- The max-height property is supported in IE7: http://www.w3schools.com/cssref/pr_dim_max-height.asp , and you can use IE7 to check its this link .
IE6 and earlier do not support the max-height property. But you can use CSS to crack it:
img { max-height: 800px; _height:expression(this.scrollHeight > 800 ? "800px" : "auto"); max-width: 600px; _width:expression(this.scrollWidth > 600 ? "600px" : "auto"); }
2.1. Solve it with jQuery:
if($.browser.msie&&($.browser.version == "6.0")&&!$.support.style){ $("img").each(function(){ if($(this)[0].scrollHeight>800) $(this).css({"height":"800px","overflow":"hidden"}); }); }
Update 2012.11.27 :
img{ min-height:800px;height:auto !important;height:800px; min-width:600px;width:auto !important;width:600px; }
source share