码迷,mamicode.com
首页 > Web开发 > 详细

css之ie6双倍margin问题

时间:2014-08-11 18:21:22      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:style   http   使用   os   2014   ar   问题   div   

1、当一个div设置了浮动且使用了margin时,比如设置左浮动且使用了margin-left(右浮动也是类似)

<html>
<head>
	<style type="text/css">
	div {
		width: 200px;
		height: 200px;
		background: blue;
		float: left;
		margin-left: 100px;
	}
	</style>
</head>
<body>
	<div></div>
</body>
</html>


2、这时在谷歌等浏览器和ie6看到的是不一样的( 上面是ie6,下面是谷歌浏览器)

bubuko.com,布布扣


恩,是的,ie6的margin-left成双倍了。


3、解决办法就是加上一句 _display:inline;

div {
	width: 200px;
	height: 200px;
	background: blue;
	float: left;
	margin-left: 100px;
	
	/* 解决ie6双倍距离 */
	_display: inline;
}

bubuko.com,布布扣


恩,这时就解决了ie6双倍margin的问题。



css之ie6双倍margin问题,布布扣,bubuko.com

css之ie6双倍margin问题

标签:style   http   使用   os   2014   ar   问题   div   

原文地址:http://my.oschina.net/cobish/blog/300048

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!