兼容IE6的最大宽度max-width效果:
由于IE6浏览器并不支持度max-width属性,所以要在IE6下实现此效果,需要一些兼容性写法。
代码如下:
.max_width{ max-width:600px; _width:expression(document.body.clientWidth > 600 ? "600px" : "auto"); }
原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=13030
更多内容可以参阅:http://www.softwhy.com/divcss/
时间: 2024-10-03 13:34:30