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不支持max-height的解决之法
-
解决IE下select option不支持display none 的问题
-
[if IE] 在IE10 或者是 IE11以及以上 中无效的解决方案
-
解决IE6下resize事件执行多次的问题 博客分类: web前端 ie6resizejquery.wresize.js
-
解决IE6下resize事件执行多次的问题 博客分类: web前端 ie6resizejquery.wresize.js
-
关于vue项目h5在ios(苹果手机)不支持自动播放的解决方法
-
nginx服务器在IE下载时,apk文件变成zip的解决方法(转) 博客分类: androidnginx
-
maven编译出现source 1.3 中不支持泛型问题的解决方案 博客分类: 应用问题 mavensource 1.3泛型
-
phpstudy默认不支持64位php的解决方法
-
关于服务器或虚拟主机不支持 AjaxPro 的问题终极解决方法