我说一下我觉着为什么要先加载右侧吧。因为如果先写好左侧的,会发现right在left上面,所以如果想让left进贴top必须margin-top,但是等你把右侧做好以后,会发现,left进到top里面去了。刚才做的margin-top之前,left没有紧贴top是因为中间夹了right,所以要先把right不知好才不影响left
.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;}
.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在下面 所以先加载 不知道我说的对不