右侧先加载,左侧后加载,应该说的是下方div方框为right在上方,left在下方,这样当浏览器阅读的时候,会先读到right,这个时候添加浮动,则不能都添加左浮动。需要将right添加为右浮动,left添加为左浮动。当right属性添加为右浮动的时候,盒子边框先右浮动触碰到main右边框,然后停止浮动;left属性添加为左浮动的时候,盒子边框触碰到main左边框,然后停止浮动。这个情况两个盒子是left在左,right在右,而浏览器阅读顺序为先出现right盒子,然后浮动触碰main右边框;然后出现left盒子,浮动触碰main左边框。
.top{width:100%;height:100px;background:#ccc;}
.main{width:100%;height:500px;background:red;}
.left{width:200px;height:500px;background:blue;position:absolute;left:0;top:100px;}
.right{margin-left:210px;height:500px;background:#3f6;left:0;top:100;}
.foot{width:100%;height:70px;background:#F60;}
.main{width:100%;height:500px;background:red;}
.left{width:200px;height:500px;background:blue;position:absolute;left:0;top:100px;}
.right{margin-left:210px;height:500px;background:#3f6;left:0;top:100;}
.foot{width:100%;height:70px;background:#F60;}