css:resize_an_image_dynamically
This is an old revision of the document!
css - Resize an image dynamically
img { max-width: 100%; height: auto; width: auto\9; /* ie8 */ }
NOTE: max-width:100% and height:auto works in IE7, but not in IE8 (yes, another weird IE bug). To fix this, you need to add width:auto\9 for IE8.
and if you want to enforce a fixed max width of the image, just place it inside a container, for example:
<div style="max-width:500px;"> <img src="..." /> </div>
css/resize_an_image_dynamically.1481456324.txt.gz ยท Last modified: 2020/07/15 09:30 (external edit)