User Tools

Site Tools


css:resize_an_image_dynamically

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
css:resize_an_image_dynamically [2020/07/15 09:30] – external edit 127.0.0.1css:resize_an_image_dynamically [2021/08/08 12:35] (current) – removed peter
Line 1: Line 1:
-====== css - Resize an image dynamically ====== 
  
-<code css> 
-img { 
-  max-width: 100%; 
-  height: auto; 
-  width: auto\9; /* ie8 */ 
-} 
-</code> 
- 
-<WRAP info> 
-**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. 
-</WRAP> 
- 
-and if you want to enforce a fixed max width of the image, just place it inside a container, for example: 
- 
-<code html> 
-<div style="max-width:500px;"> 
-  <img src="..." /> 
-</div> 
-</code> 
css/resize_an_image_dynamically.1594805433.txt.gz · Last modified: 2020/07/15 09:30 by 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki