Horje
image in html not responsive Code Example
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 */
}
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>




Html

Related
angularjs optional html checked Code Example angularjs optional html checked Code Example
minmax length password Code Example minmax length password Code Example
how to access value of ant design elements Code Example how to access value of ant design elements Code Example
html pallete Code Example html pallete Code Example
how to set a link to a file that is not in the same folder html Code Example how to set a link to a file that is not in the same folder html Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7