Answers for "image in html not responsive"

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
1

image in html not responsive

<style>
#imgx img {
    float:left;
    margin:2px;
    border-radius:7px;
    display: block;
    max-width:100%;
    height:auto;
    width:100%;
}
  </style>
  
  
  
  
<div id="imgx" class="col-xs-12 col-sm-12" style="padding-bottom:5px;">
    <?php echo $text_content_with_image; ?>
</div>
Posted by: Guest on March-25-2022

Code answers related to "image in html not responsive"

Browse Popular Code Answers by Language