.top{height:100px; background:#ccc;}
.main{height:600px; background:red; margin:0 auto; position:relative;}
.left{width:200px; height:600px;background:blue;position:absolute;left:0;top:0;}
.right{height:600px;background:green;margin:0 0 0 210px;}
.foot{height:50px;background:orange;}
.main{height:600px; background:red; margin:0 auto; position:relative;}
.left{width:200px; height:600px;background:blue;position:absolute;left:0;top:0;}
.right{height:600px;background:green;margin:0 0 0 210px;}
.foot{height:50px;background:orange;}
已采纳回答 / 慕男婶
是需要对浏览器比较熟悉的。是否兼容一部分是根据经验知道这个东西有兼容性问题,然后写的时候顺手就解决了。。另一部分就是靠测试了(使用IEtester来测试)。谁的大脑也不能记住所有有兼容性的东西。。PS:我及其不建议再兼容IE6了,几乎已经没有人用了,然后很多人还在话时间成本学习所谓的IE6兼容性。不如把这个时间来学新的东西。比如HTML5、CSS3
2015-12-12
最新回答 / sunyaox
这没说吧:两个<div id="left"></div> <div id="right"></div>这两个元素如果在一行显示,就用浮动。在<body></body>中添加两个div 然后设置,宽度 高度 背景颜色,分别给这两个div设置颜色 试试吧
2015-12-11
.top{height:100px;background:#ccc;}
.main{height:600px;margin:0 auto; background:red;}
.left{width:300px; height:600px;background:#00f;float:left;}
.right{width:780px;height:600px;background:#1d9;float:right;}
.foot{ height:50px; background:#F63; margin:0 auto;clear:both}
不一定需要绝对定位来做啊。
.main{height:600px;margin:0 auto; background:red;}
.left{width:300px; height:600px;background:#00f;float:left;}
.right{width:780px;height:600px;background:#1d9;float:right;}
.foot{ height:50px; background:#F63; margin:0 auto;clear:both}
不一定需要绝对定位来做啊。