.top{height:100px;background:#ccc;}
.main{background:red;}
.left{width:200px;height:600px;background:blue;position:relative;}
.right{height:600px;background: #99cc99;position:absolute;margin-left: 210px;width:100%;}
.foot{background:#F63;}
.main{background:red;}
.left{width:200px;height:600px;background:blue;position:relative;}
.right{height:600px;background: #99cc99;position:absolute;margin-left: 210px;width:100%;}
.foot{background:#F63;}
.left{ width:300px; height:600px; background:#ccc;float:left; }/*左浮动样式*/
.right{ width:660px; height:600px; background:#FCC;float:right;position:relative;left:30px;}/*右浮动样式*/
.right{ width:660px; height:600px; background:#FCC;float:right;position:relative;left:30px;}/*右浮动样式*/
.main{ height:600px;width:50%; background:#FCC;margin:0 auto}
.footer{ height:50px;width:50%; background:#9CF;margin:0 auto}
.footer{ height:50px;width:50%; background:#9CF;margin:0 auto}
最新回答 / duun09
前面的加了浮动就不占位了 ,所以footer就上去了,在footer添加clear:both就清除了 前面浮动的影响,footer就自然到下面位置来了
2016-01-08
最赞回答 / 无敌小哥儿
记不记得前面有个习题,是说float和absolute属性脱离文档流(如果不记得,在返回去看看)。。。。左右两列设置了absolute属性,使其脱离了文档流。。margin是设置外边距的。视频里设置左外边距200px(这是左边 .left 的宽度),右外边距300px(右边 .right 的宽度),所以能够正好在这两者之间。。如果不设置边距,main标签中的内容就填充到浏览器的100%,被左边和右边遮盖。。...如果还不懂,建议你复习复习基础。
2016-01-06
已采纳回答 / 东来0
.top{height:100px; background:#ccc}.main{background:red;}.left{position:absolute;left:0;top:100px;width:200px; height:500px; background:blue;}.right{ margin-left:210px;height:500px; background:#9C9;}.foot{height:50px; background:#F63;}
2016-01-06
已采纳回答 / Fday
行间距(行高)属性(line-height)下面是例子:设置line-height:10em;<...图片...>效果如下:<...图片...>而设置line-height:2em;<...图片...>效果如下:<...图片...>
2016-01-06