Coding Ninjas Logo

Home > CSS Questions > How can we contain the image within a Div?

How can we contain the image within a Div?



Answer: If we have a div , and we want that image should automatically adjust according to the size of div then we can take the help of the CSS property that is : Object-fit.
object-fit can be set with one of these five values:
  1. fill : this is the default value which stretches the image to fit the content box, regardless of its aspect-ratio.
  2. contain: increases or decreases the size of the image to fill the box whilst preserving its aspect-ratio.
  3. cover : the image will fill the height and width of its box, once again maintaining its aspect ratio but often cropping the image in the process.
  4. none: image will ignore the height and width of the parent and retain its original size.
  5. scale-down: the image will compare the difference between none and contain in order to find the smallest concrete object size.

Screen-Shot

HTML CODE

CSS CODE

Before

After


Similar Questions