IE Bug--浮动对象外补丁的双倍距离的解决方法
程序员文章站
2024-02-13 08:17:22
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中不至于产生双倍距离,,更详细资料,可看 。
先看以下代码:
#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中不至于产生双倍距离,,更详细资料,可看 。
上一篇: rman恢复过程中遇到问题的总结
下一篇: java IO流文件的读写具体实例