欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ie不支持max-height的解决之法

程序员文章站 2024-03-25 12:46:28
...

.div{
max-height: 100px;
_height:expression(this.scrollHeight > 100 ? "100px" : "auto");
overflow-y:auto;
}


这样就可以让div在ie和firefox中都实现max-height的效果



.div{
max-height: 100px;
min-height:60px;
_height:expression(this.scrollHeight > 100 ? "100px" : (
this.scrollHeight < 60 ? "60px" : "auto"));
overflow-y:auto;
}


这样就可以让div在ie和firefox中都实现max-height和min-height的效果
相关标签: IE Firefox HTML