兼容IE6浏览器的最大高度和最小高度css代码:
IE6浏览器是不支持最大高度和最小高度属性的,下面就通过兼容性措施实现此功能。
一.最大高度效果:
.max_height{ max-height:400px; _height:expression(this.scrollHeight > 400 ? "400px" : "auto"); }
二.最小高度效果:
.min_height{ min-height:200px; _height:expression(this.scrollHeight < 200 ? "200px" : "auto"); }
原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=13031
更多内容可以参阅:http://www.softwhy.com/divcss/
时间: 2024-10-29 00:26:01