读书人

让IE6支持max-height又支持min-height

发布时间: 2012-09-21 15:47:26 作者: rapoo

让IE6支持max-height又支持min-height方法

?

IE6支持Max-Height和支持Min-Height CSS代码

_height:expression(this.scrollHeight > 620 ? "620px" : (this.scrollHeight < 40 ? "40px" : "auto"));

?

?

?

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

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

?

说明:以上代码作用是让对象的最小高度为40px,最大高度为620px的CSS样式属性

width:auto !important; width:1%;

读书人网 >Web前端

热点推荐