最赞回答 / 沈江南
加载顺序一般是从上到下的顺序加载,各个浏览器的实现其实也不完全相同,有的是进行并行加载,分配的进程数量也不同。加载顺序是改变不了的,在代码中把div的顺序调整就negh能实现右边先加载,左边后加载<div class="right">right</div><div class="left">left</div>
2017-09-13
最新回答 / 慕运维3243403
这位同学,你好。我也有这个困惑。视频里的网页布局上下大体是按照代码从上到下的顺序排列,但实际写代码时候,经常有板块的覆盖与叠加。求指教,多谢多谢
2017-09-12
.top{ height:100px;margin:0 auto;background:#CCC;}
.main{ height:500px;background:red;position:relative;}
.left{width:200px;height:500px;background:blue;position:absolute;top:0;left:0;}
.right{height:500px;background:#9DA;margin-left:210px;}
.foot{height:50px;background:#F63;}
.main{ height:500px;background:red;position:relative;}
.left{width:200px;height:500px;background:blue;position:absolute;top:0;left:0;}
.right{height:500px;background:#9DA;margin-left:210px;}
.foot{height:50px;background:#F63;}
.top{ width100%;height:50px;background:#edf1f2;}
main{width:100%;background:red;height:800px;}
left{ width:200px;background:blue;float:left;height:800px;}
right{background:green;margin-left:210px;height:800px;position:absolute;width:100%;}
foot{width100%;height:50px;background:orange;margin:0 auto;}
main{width:100%;background:red;height:800px;}
left{ width:200px;background:blue;float:left;height:800px;}
right{background:green;margin-left:210px;height:800px;position:absolute;width:100%;}
foot{width100%;height:50px;background:orange;margin:0 auto;}
最新回答 / 蚂蚁_0014
.top{height:100%;height:50px;background:#ccc;}.main{height:800px;width:100%;background:red;}.left{width:200px;height:800px;background:blue;position:absolute;left:0;top:50px;}.right{height:800px;background:green;margin-left:210px;}.foot{height:100px;clear:...
2017-09-01