.left{ width:200px; height:600px; background:#ccc;position:absolute; left:0; top:0}
.main{ height:600px;margin:0 310px 0 210px; background:#9CF;overflow:scroll;}
.right{ height:600px; width:300px; position:absolute; top:0;right:0; background:#FCC;}
.main{ height:600px;margin:0 310px 0 210px; background:#9CF;overflow:scroll;}
.right{ height:600px; width:300px; position:absolute; top:0;right:0; background:#FCC;}
最赞回答 / 花森煜米
1.原因:footer与head是文档流,而其他元素均设置了浮动,从而脱离了文档流,所以此处footer直接忽略其他浮动的元素好像不存在一样,直接就排在head后面去了。2.解决:因此给footer元素设置了clear: both;清理浮动,使它们与footer一样排在head的后面。
2017-03-11
.top{height:100px;background:gray;}
.main{background:red;position:relative;}
.left{ height:500px;width:200px;background:blue;position:absolute;left:0;top:0;}
.right{height:500px;margin-left:210px;background:green;}
.foot{height:100px;margin:0 auto;background:orange;clear:both;}
.main{background:red;position:relative;}
.left{ height:500px;width:200px;background:blue;position:absolute;left:0;top:0;}
.right{height:500px;margin-left:210px;background:green;}
.foot{height:100px;margin:0 auto;background:orange;clear:both;}
要求右侧(right)先加载,左侧(left)后加载 我理解的是right和left的样式谁先出来 跟就近原则一样 而在设置CSS的时候right在下面 所以先加载 不知道我说的对不