CSS中的zoom:1的作用

兼容IE6、IE7、IE8浏览器,经常会遇到一些问题,可以使用zoom:1来解决,有如下作用:

触发IE浏览器的haslayout。解决ie下的浮动,margin重叠等一些问题。

比如,本站使用DIV做一行两列显示,HTML代码:

CSS代码:

.h_mainbox         
    { 
        border:1px solid #dadada; 
        padding:4px 15px; 
        background:url(../mainbox_bg.gif) 0 1px repeat-x; 
        margin-bottom:6px; overflow:hidden
    }
    .h_mainbox h2      { font-size:12px; height:30px; line-height:30px; border-bottom:1px solid #ccc; color:#555;}
    .h_mainbox h2 span { float:right; font-weight:normal;}
    .h_mainbox ul      { padding:6px 0px; background:#fff;}
    .mainlist          {overflow:auto; zoom:1;}
    .h_mainbox li
    { 
        width:268px; float:left; height:24px; 
        overflow:hidden; 
        background:url(../icon3.gif) 0 6px no-repeat; 
        padding:0px 5px 0px 18px; line-height:200%;
    }

.mainlist {overflow:auto; zoom:1;}的设置,就可以在IE6、IE7、IE8正常显示效果了。

另外:

用css中的zoom属性可以让网页实现IE7中的放大缩小功能。

比如你想让你的网页缩小为原来的一半,那么就在body中加入style="zoom:0.5",如:

 程序代码
 

你可能感兴趣的:(webfront)