This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
The object-fit CSS property sets how the content of a replaced element, such as an <img> or <video>, should be resized to fit its container.
Note: The object-fit property has no effect on <iframe>, <embed>, and <fencedframe> elements.
You can alter the alignment of the replaced element's content object within the element's box using the object-position property.
object-fit: fill;
object-fit: contain;
object-fit: cover;
object-fit: none;
object-fit: scale-down;
<section id="default-example">
<img
class="transition-all"
id="example-element"
src="/shared-assets/images/examples/plumeria-146x200.jpg" />
</section>
#example-element {
height: 100%;
width: 100%;
border: 2px dotted #888888;
}
object-fit: contain; object-fit: cover; object-fit: fill; object-fit: none; object-fit: scale-down; /* Global values */ object-fit: inherit; object-fit: initial; object-fit: revert; object-fit: revert-layer; object-fit: unset;
The object-fit property is specified as a single keyword chosen from the list of values below.
containThe replaced content is scaled to maintain its aspect ratio while fitting within the element's content box. The entire object is made to fill the box, while preserving its aspect ratio, so the object will be "letterboxed" or "pillarboxed" if its aspect ratio does not match the aspect ratio of the box.
coverThe replaced content is sized to maintain its aspect ratio while filling the element's entire content box. If the object's aspect ratio does not match the aspect ratio of its box, then the object will be clipped to fit.
fillThe replaced content is sized to fill the element's content box. The entire object will completely fill the box. If the object's aspect ratio does not match the aspect ratio of its box, then the object will be stretched to fit.
noneThe replaced content is not resized.
scale-downThe content is sized as if none or contain were specified, whichever would result in a smaller concrete object size.
| Initial value | fill |
|---|---|
| Applies to | replaced elements |
| Inherited | no |
| Computed value | as specified |
| Animation type | discrete |
object-fit =
fill |
contain |
cover |
none |
scale-down
<section> <h2>object-fit: fill</h2> <img class="fill" src="mdn_logo_only_color.png" alt="MDN Logo" /> <img class="fill narrow" src="mdn_logo_only_color.png" alt="MDN Logo" /> <h2>object-fit: contain</h2> <img class="contain" src="mdn_logo_only_color.png" alt="MDN Logo" /> <img class="contain narrow" src="mdn_logo_only_color.png" alt="MDN Logo" /> <h2>object-fit: cover</h2> <img class="cover" src="mdn_logo_only_color.png" alt="MDN Logo" /> <img class="cover narrow" src="mdn_logo_only_color.png" alt="MDN Logo" /> <h2>object-fit: none</h2> <img class="none" src="mdn_logo_only_color.png" alt="MDN Logo" /> <img class="none narrow" src="mdn_logo_only_color.png" alt="MDN Logo" /> <h2>object-fit: scale-down</h2> <img class="scale-down" src="mdn_logo_only_color.png" alt="MDN Logo" /> <img class="scale-down narrow" src="mdn_logo_only_color.png" alt="MDN Logo" /> </section>
h2 {
font-family:
Courier New,
monospace;
font-size: 1em;
margin: 1em 0 0.3em;
}
img {
width: 150px;
height: 100px;
border: 1px solid black;
margin: 10px 0;
}
.narrow {
width: 100px;
height: 150px;
}
.fill {
object-fit: fill;
}
.contain {
object-fit: contain;
}
.cover {
object-fit: cover;
}
.none {
object-fit: none;
}
.scale-down {
object-fit: scale-down;
}
| Specification |
|---|
| CSS Images Module Level 3> # the-object-fit> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
object-fit |
32 | 7916–79Only supported for<img> elements. |
36 | 1911.6–15 | 10 | 32 | 36 | 1912–14 | 10 | 2.0 | 4.4.3 | 10 |
contain |
32 | 79 | 36 | 19 | 10 | 32 | 36 | 19 | 10 | 2.0 | 4.4.3 | 10 |
cover |
32 | 79 | 36 | 19 | 10 | 32 | 36 | 19 | 10 | 2.0 | 4.4.3 | 10 |
fill |
32 | 79 | 36 | 19 | 10 | 32 | 36 | 19 | 10 | 2.0 | 4.4.3 | 10 |
none |
32 | 79 | 36 | 19 | 10 | 32 | 36 | 19 | 10 | 2.0 | 4.4.3 | 10 |
scale-down |
32 | 79 | 36 | 19 | 10 | 32 | 36 | 19 | 10 | 2.0 | 4.4.3 | 10 |
object-position, image-orientation, image-rendering, image-resolution.background-size
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit