CSS object-fit Property


Use the object-fit property in CSS to resize image or video to fit its container.

Example

You can try to run the following code to learn how to work with the object-fit property −

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         .myimg {
            width:250px;
            height:350px;
            object-fit:cover;
         }
      </style>
   </head>
   <body>
      <h2>SWIFT</h2>
      <img class = "myimg"
         src = "https://www.tutorialspoint.com/assets/videos/courses/67/images/course_67_image.png"
         alt = "Python Data Science" width = "300" height = "200">
   </body>
</html>

Updated on: 03-Jul-2020

105 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements