Mastering the CSS object-fit Property: Image and Video Resizing Made Easy

  • Blog /
  • Mastering the CSS object-fit Property: Image and Video Resizing Made Easy
Blog Featured Image

The object-fit property in CSS is an essential tool for web developers looking to effectively manage the display of images and videos within containers. This property allows for flexible and responsive design, ensuring that media elements fit neatly without distortion, making it easier to create visually appealing layouts.

Understanding object-fit

The object-fit property is particularly useful for replaced elements like <img>, <video>, and <iframe>. It provides a way to control how these elements resize and fill their container, preserving their aspect ratios while achieving the desired visual outcome.

 Available Values

  • fill (default)
      1. Description: The content is resized to fill the entire container, potentially distorting the aspect ratio.
      2. Use Case: Suitable for scenarios where exact filling is more important than maintaining the aspect ratio.
  • contain
      1. Description: The content is scaled to fit within the container while maintaining its original aspect ratio. This might result in letterboxing (empty spaces).
      2. Use Case: Ideal for thumbnails or images where full visibility is needed without cropping.
  • cover
      1. Description: The content is resized to cover the entire container while maintaining its aspect ratio, which may lead to cropping.
      2. Use Case: Perfect for background images or hero sections where a clean fill is desired.
  • none
      1. Description: The content retains its original size, which might overflow the container.
      2. Use Case: Use when you need the image to stay at its natural dimensions, regardless of container size.
  • scale-down
      1. Description: The content is scaled down to fit either its original size (none) or as large as it can be within the container (contain).
      2. Use Case: Useful for preventing images from exceeding their natural dimensions while still fitting into a responsive layout.

Using object-fit: fill

The object-fit: fill value allows an image or video to stretch to fill its container entirely, regardless of its aspect ratio. This can lead to distortion of the media, but it's useful when the specific dimensions of the container are more important than preserving the original proportions of the media.

Using object-fit_ fill

HTML Example : 

Copied


<!DOCTYPE html>
<html lang="en">
<head>

meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Object Fit Fill Example</title>

<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
}
.container {
width: 300px;  /* Fixed width */
height: 200px; /* Fixed height */
overflow: hidden; /* Prevent overflow */
border: 2px solid #333;
display: flex;
justify-content: center;
align-items: center;
background-color: #fff;
}
.fill {
object-fit: fill; /* Stretch to fill */
width: 100%; /* Full width of the container */
height: 100%; /* Full height of the container */

     }

</style>

</head>

<body>

<div class="container">

     <img src="https://via.placeholder.com/600x400" alt="Example Image" class="fill">

</div>

</body>
</html>

Using object-fit: contain

The object-fit: contain value allows an image or video to be resized to fit within its container while maintaining its original aspect ratio. This means that the entire image will be visible, but there may be empty space (letterboxing) around it if the aspect ratio of the image does not match that of the container.

Using object-fit_ contain

HTML Example : 

Copied


<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Object Fit Contain Example</title>

<style>

     body {

         display: flex;

         justify-content: center;

         align-items: center;

         height: 100vh;

         background-color: #f0f0f0;

     }

     .container {

         width: 300px;  /* Fixed width */

         height: 200px; /* Fixed height */

         overflow: hidden; /* Prevent overflow */

         border: 2px solid #333;

         display: flex;

         justify-content: center;

         align-items: center;

         background-color: #fff;

     }

     .contain {

         object-fit: contain; /* Maintain aspect ratio */

         width: 100%;     /* Full width of the container */

         height: 100%;    /* Full height of the container */

     }

</style>

</head>

<body>

<div class="container">

     <img src="https://via.placeholder.com/600x400" alt="Example Image" class="contain">

</div>

</body>

</html>

Using object-fit: cover

The object-fit: cover value allows an image or video to be resized to completely cover its container while maintaining its original aspect ratio. This means that the content may be cropped if the aspect ratio of the media does not match the aspect ratio of the container. This technique is often used for backgrounds and hero images where a full fill is desired without distorting the image.

Using object-fit_ cover

HTML Example : 

Copied


<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Object Fit Cover Example</title>

<style>

     body {

         display: flex;

         justify-content: center;

         align-items: center;

         height: 100vh;

         background-color: #f0f0f0;

     }

     .container {

         width: 300px;  /* Fixed width */

         height: 200px; /* Fixed height */

         overflow: hidden; /* Prevent overflow */

         border: 2px solid #333;

         display: flex;

         justify-content: center;

         align-items: center;

         background-color: #fff;

     }

     .cover {

         object-fit: cover; /* Fill the container while maintaining aspect ratio */

         width: 100%;   /* Full width of the container */

         height: 100%;  /* Full height of the container */

     }

</style>

</head>

<body>

<div class="container">

     <img src="https://via.placeholder.com/600x400" alt="Example Image" class="cover">

</div>

</body>

</html>

Using object-fit: none

The object-fit: none value allows an image or video to retain its original size and dimensions, which may cause it to overflow its container if it is larger than the container. This setting is useful when you want the media to be displayed in its natural size without any resizing.

Using object-fit_ none

HTML Example :

Copied


<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Object Fit None Example</title>

<style>

     body {

         display: flex;

         justify-content: center;

         align-items: center;

         height: 100vh;

         background-color: #f0f0f0;

     }

     .container {

         width: 300px;  /* Fixed width */

         height: 200px; /* Fixed height */

         border: 2px solid #333;

         overflow: hidden; /* Prevent overflow */

         display: flex;

         justify-content: center;

         align-items: center;

         background-color: #fff;

     }

     .none {

         object-fit: none; /* Maintain original size */

         width: auto;  /* Original width */

         height: auto; /* Original height */

     }

</style>

</head>

<body>

<div class="container">

     <img src="https://via.placeholder.com/600x400" alt="Example Image" class="none">

</div>

</body>

</html>

 Using object-fit: scale-down

The object-fit: scale-down value combines the behavior of none and contain. It scales the image down to fit the container only if it is larger than the container's dimensions, while keeping its original size if it's smaller. This is useful when you want to ensure that an image does not exceed its natural size but still want it to fit within the specified dimensions.

Using object-fit_ scale-down

HTML Example :

Copied


<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Object Fit Scale-Down Example</title>

<style>

     body {

         display: flex;

         justify-content: center;

         align-items: center;

         height: 100vh;

         background-color: #f0f0f0;

     }

     .container {

         width: 300px;  /* Fixed width */

         height: 200px; /* Fixed height */

         border: 2px solid #333;

         overflow: hidden; /* Prevent overflow */

         display: flex;

         justify-content: center;

         align-items: center;

         background-color: #fff;

     }

     .scale-down {

         object-fit: scale-down; /* Scale down if larger than container */

         width: 100%;        /* Full width of the container */

         height: 100%;       /* Full height of the container */

     }

</style>

</head>

<body>

<div class="container">

     <img src="https://via.placeholder.com/600x400" alt="Large Example Image" class="scale-down">

</div>

</body>

</html>

Conclusion

The object-fit property is a powerful addition to the CSS toolbox, enabling web developers to create responsive, visually appealing layouts with images and videos. By mastering this property, you can ensure that your media content is displayed in the best possible way, enhancing the overall user experience on your website. Whether you're building a simple gallery or a complex web application, understanding how to effectively use object-fit will elevate your design skills.

Let me know if you need any help implementing these effects in your projects!