已采纳回答 / sandy棒棒糖
清除浮动的意思。 当属性设置float(浮动)时,他所在的物理位置已经脱离文档流了,后面的元素就会受影响,如果希望不被float(浮动)所影响,这个时候就需要用clear:both;来清除。
2016-01-29
.top{width:100%;height:50px;background:#ccc;}
.main{background:red;}
.left{ width:200px;height:500px;background:blue;position: absolute;left:0;top:50px;}
.right{width:100%;height:500px;background:#8FBC8F;margin-left:210px}
.foot{width:100%;height:50px;background:#D2691E;}
.main{background:red;}
.left{ width:200px;height:500px;background:blue;position: absolute;left:0;top:50px;}
.right{width:100%;height:500px;background:#8FBC8F;margin-left:210px}
.foot{width:100%;height:50px;background:#D2691E;}