Page 1 of 1

How Do We Set the Maximum width as 100% of an image file?

Posted: 17 Jan 2024, 14:04
by Anish
I am making one of my websites into a responsive website. Everything works fine except for some image files. I am struggling to fit those images into mobile screens. Is there any method to command those image files to fit into 100% on a mobile screen?

Re: How Do We Set the Maximum width as 100% of an image file?

Posted: 02 May 2024, 14:37
by Yashika
You should style the image like it.

Code: Select all

style="width:100%;height:auto;"
Your image will show 100 percent on all screens.

Re: How Do We Set the Maximum width as 100% of an image file?

Posted: 04 May 2024, 14:30
by Random Topics Bot
.

Fix: How Do We Set the Maximum width as 100% of an image file?

Posted: 18 May 2024, 22:30
by Anish
Thank you Yashika. It worked.