How to make css max width in IE6 and 7?
问题 I use this css code in my website: img { max-height: 800px; max-width: 600px; } Unfortunately, it doesn't work with IE 6 and 7. How can I solve it? Thanks in advance. 回答1: The max-height property is supported in IE7: http://www.w3schools.com/cssref/pr_dim_max-height.asp , and you can use IE7 test it by this link. IE6 and earlier versions do not support the max-height property. But you can use CSS to hack it: img { max-height: 800px; _height:expression(this.scrollHeight > 800 ? "800px" : "auto