让所有浏览器包括IE6即支持最大宽度又支持最小宽度。

让所有浏览器包括IE6即支持最大宽度又支持最小宽度。

_height  _width:针对ie6 css hack

.yangshi{max-620px;min-1px;_expression(this.scrollWidth > 620 ? "620px" : (this.scrollWidth < 1? "1px" : "auto"));}

让所有浏览器包括IE6即支持最大高度又支持最小高度。

.yangshi{max-Height:620px;min-height:40px;_height:expression(this.scrollHeight > 620 ? "620px" : (this.scrollHeight < 40 ? "40px" : "auto"));}

原文地址:https://www.cnblogs.com/12606huchao/p/4885289.html