๐Ÿ–ผ๏ธ 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