为什么练习题的foot要清楚浮动才行,但是讲解视频里的例子却不用呢?
这个是否与先后设定的顺序有关?
这个是否与先后设定的顺序有关?
2016-02-19
<style type="text/css">
body{ margin:0; padding:0; font-size:30px; color:#fff}
.top{height:100px;background:#ccc;}
.main{height:600px;background:red;}
.left{background:blue;width:200px;height:600px;position:absolute;top:100px;}
.right{background:green;height:600px;margin-left:210px;}
.foot{background:#f63;height:50px;}
</style>
举报