最赞回答 / 崔长歌
清除浮动是为了解决因为浮动而导致的高度坍塌 你不清除浮动就会发现foot并没有高度值 所以它的背景颜色出不来 就是因为没有给块设置值 你能感觉到它的存在是因为它里面有文本 如果没有文本也不看源码你都发现不了它的存在 如果你觉得明白了 给个最佳吧:-)
2017-08-23
body{ margin:0; padding:0; font-size:20px; color:#fff}
.top{height:60px;background:#000;}
.main{background:#f0f;}
.right{height:600px;background:#0ff;margin:0 210px;width:100%;}
.left{width:200px;height:600px;position:absolute;background:#00f;margin:-600px 0;}
.foot{height:30px;background:#f0f;}
.top{height:60px;background:#000;}
.main{background:#f0f;}
.right{height:600px;background:#0ff;margin:0 210px;width:100%;}
.left{width:200px;height:600px;position:absolute;background:#00f;margin:-600px 0;}
.foot{height:30px;background:#f0f;}
.main{width:100%;height:500px;background-color:red;}
.left{ width:200px;height:500px;float:left;background-color:blue;position:absolute;}
.right{width:100%;height:500px;float:right;margin-left:210px;background-color:green;position:absolute;}
.foot{width:100%;height:100px;background-color:orange;}
.left{ width:200px;height:500px;float:left;background-color:blue;position:absolute;}
.right{width:100%;height:500px;float:right;margin-left:210px;background-color:green;position:absolute;}
.foot{width:100%;height:100px;background-color:orange;}