为什么这个底部背景不设置浮动清除,它也不会往上跑
为什么这个底部背景不设置浮动清除,它也不会往上跑
为什么这个底部背景不设置浮动清除,它也不会往上跑
2016-03-17
<style type="text/css">
body{ margin:0; padding:0; font-size:30px; color:#fff}
.top{height:100px; background:#ccc}
.main{height:960px;background:red}
.left{width:40%;height:960px;background:blue;float:left}
.right{width:57%;height:960px;background:green;float:right}
.foot{height:50px;background:#f60;}
</style>
因为你的main里面设置了高度height,这样main就有了实际高度,若不设置foot就会往上跑
举报