The Key To Responsive Images

2/5/2022

Responsive images with one line of CSS

	img {
  max-width: 100%
}  

This will make your images responsive, they will be their natural size unless thier parent is too small, in that case they will shrink and be the size of the parent.

If you want it as an inline style try:

    <img src="/theImg.jpg" style="max-width: 100%">
</div>