当前位置: 代码迷 >> Web前端 >> 让IE6支持max-height又支持min-height步骤
  详细解决方案

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

热度:240   发布时间:2012-09-21 15:47:26.0
让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样式属性

1 楼 sblig 2012-05-02  

width:auto !important; width:1%;
  相关解决方案