Link Search Menu Expand Document

Make an Image Responsive

Summary

  • Images can be made responsive by using the max-width and height properties.

Final Code

<style>
.responsive-img {
  max-width: 100%;
  height: auto;
}

img {
  width: 600px;
}
</style>

<img class="responsive-img" src="https://s3... alt="freeCodeCamp stickers set">
<img src="https://s3..." alt="freeCodeCamp stickers set">