Answers for "css responsive on images"

CSS
12

responsive image in css

.responsive_img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Prevent the image from stretching. So it crops the image to prevent from awkward stretching */
}
Posted by: Guest on May-29-2021
0

img responsiveness

img,
video,
iframe {
  max-inline-size: 100%;
  block-size: auto;
}
Posted by: Guest on January-21-2022

Code answers related to "css responsive on images"

Browse Popular Code Answers by Language