欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

IE Bug--浮动对象外补丁的双倍距离的解决方法

程序员文章站 2024-02-29 08:07:28
the ie doubled float-margin bug  iebug--浮动对象外补丁的双倍距离 先看以...
the ie doubled float-margin bug  iebug--浮动对象外补丁的双倍距离

先看以下代码:

#box{
    background: threedface;
    width: 500px;
    height: 400px;    
}

#box1{
    float: left;
    background: #f2f2f2;
    width: 300px;
    height: 200px;
    margin-left: 50px;    
}

box在外面,box1在里面,但在ie浏览器中box1离左边的距离会是100px,而实际距离应是50px,演示。

解决的方法是,在box1的代码中加入:display: inline;,可使浮动被忽略,ie中不至于产生双倍距离,,更详细资料,可看 。