Quick way to make an image responsive
Dushyant Pathak

Dushyant Pathak @dkp1903

About: JavaScript | Java

Location:
India
Joined:
Oct 12, 2019

Quick way to make an image responsive

Publish Date: May 30 '20
6 0

Add the following to your image's style attribute.

<img style = "width: 100%; height: auto;" src = "some-image-source">
Enter fullscreen mode Exit fullscreen mode

If you want to set a max-width,

<img style = "width: 100%; height: auto; max-width: 200px;" src = "some-image-source">
Enter fullscreen mode Exit fullscreen mode

Cheers! Happy coding!

Comments 0 total

    Add comment