<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
.wrap{
padding:0 0 0 200px;
}
.pic{
float:left;
width:200px;
margin:0 0 0 -200px;
position:relative;
}
.main{
float:right;
}
</style>
</head>
<body>
<div class="wrap">
<div class="pic"><img src="http://pic002.cnblogs.com/img/chenjk28/200904/2009041121441128.jpg" width="100" height="75" /></div>
<div class="main">中华人民共和国中华人民共和国中华人民共和国</div>
</div>
</body>
</html>
不改动HTML结构,在IE6左侧图片不能显示,IE7,IE8,FF都显示正常,请问需要如果解决才能在IE6中正常显示
当在页面构架中,出现了Margin与float一起用时,在IE6下,其Margin属性会被解释会双倍的距离,其解决兼容问题的方法:
1、取消浮动:Float。
2、给当前层增加display: inline;属性。
Google到的,没IE6没法试。
顶..貌似可以解决