|
If you use the following, putting your image inside a div, size your images for the desktop screen, but when viewed in a mobile phone, the images will resize to fit:
<div style="width:100%">
<img src="xxxx.jpg" width="900px" style="max-width:100%">
</div>
The max-width will make sure the image never goes outside its container element -- in this case, the div.
|