如何让ie兼容max-height,和min-height属性

1.IE6支持最大高度:

.box{_height:expression((document.documentElement.clientHeight||document.body.clientHeight)>100?"100px":"");}

2、 IE6支持最小高度

.box{_height:expression((document.documentElement.clientHeight||document.body.clientHeight)<100?"100px":"");}

3、同时支持,限制最大、最小高度

比如最大为620px,最小为1px

.box{_height:expression(this.scrollHeight > 620 ? "620px" : (this.scrollHeight < 1? "1px" : "auto"));}



你可能感兴趣的:(如何让ie兼容max-height,和min-height属性)