标签:
兼容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/
标签:
原文地址:http://www.cnblogs.com/zhadanren/p/5115561.html