正确答案:
.main{width:100%; height: 600px; position: relative;}
.left{width:200px; height:600px;background: blue;position:absolute; top:0; left:0;}
.right{height: 600px;background:green;margin:0 0 0 200px;margin-left:200px;}
.foot{width: 100%; height: 100px; background: orange;}
.main{width:100%; height: 600px; position: relative;}
.left{width:200px; height:600px;background: blue;position:absolute; top:0; left:0;}
.right{height: 600px;background:green;margin:0 0 0 200px;margin-left:200px;}
.foot{width: 100%; height: 100px; background: orange;}
清楚浮动的方法综合一下答案:
一:margin:600px 0 0 0;
二:clear:both(/left/right);
三:给main设置高度:.head,.main{ width:960px; 【height:600px】;margin:0 auto;}
overflow在这里会把footer直接删除,所以不算正确的清除浮动。
一:margin:600px 0 0 0;
二:clear:both(/left/right);
三:给main设置高度:.head,.main{ width:960px; 【height:600px】;margin:0 auto;}
overflow在这里会把footer直接删除,所以不算正确的清除浮动。