🖼️ CSS

object-fit — Fix Stretched and Squashed Images Forever

📅 Jul 3, 2026 ⏱ 2 min read

Different-sized images destroying your card grid? Two properties fix it permanently.

The fix

.card img {
  width: 100%;
  aspect-ratio: 16 / 9;    /* every image box identical */
  object-fit: cover;       /* fill the box, crop overflow — NO distortion */
}

The object-fit options

Control the crop

object-position: top;       /* keep faces when cropping portraits */
object-position: 20% 50%;

Avatar recipe: width: 48px; aspect-ratio: 1; border-radius: 50%; object-fit: cover; — perfect circles from any source image. Works on <video> too.

← All Articles