/* With img element */ .my-image { width: 100px; height: 100px; object-fit: contain; } /* with background image */ .my-image { width: 500px; height: 400px; background-image: url('myurl.jpg'); background-size: cover; }