.top{height:100px;background:#999;}
.main{height:600px;background:red;position:relative;}
.right{height:600px;background:#6F9;margin-left:210px;}
.left{ width:200px;height:600px;background:blue;position:absolute;left:0;top:0;}
.foot{height:50px;background:#F60;clear:both;}
.main{height:600px;background:red;position:relative;}
.right{height:600px;background:#6F9;margin-left:210px;}
.left{ width:200px;height:600px;background:blue;position:absolute;left:0;top:0;}
.foot{height:50px;background:#F60;clear:both;}
文档流:将窗口自上而下分成一行一行,并在每行中按从左至右的依次排放元素,即为文档流。
有三种情况使得元素离开文档流而存在,分别是浮动 绝对布局 固定定位
有三种情况使得元素离开文档流而存在,分别是浮动 绝对布局 固定定位
已采纳回答 / sina娜子
当设定position:absolute 如果父级(无限)没有设定position属性,那么当前的absolute则结合TRBL属性以浏览器左上角为原始点进行定位 ( 以body为准)如果父级(无限)设定position属性,那么当前的absolute则结合TRBL属性以父级(最近)的左上角为原始点进行定位(以父级为准)。you know?
2015-09-07