为什么定位之后没有覆盖main层,还需要设置top:0;
.top{height:100px;background:#ccc;} .main{height:500px; background:red;position:relative;} .left{width:200px; height:500px; background:blue; top:0; position:absolute;} .right{background:green; margin-left:210px; height:500px;} .foot{background:orange;clear:both;} 结尾有没有清除浮动都没有变化呀?还有为什么left需要top:0;?