关于left问题
main已经用relative修饰成为具有定位性质的父包含块,那么left绝对定位后起始坐标不应该是main左上角吗?为什么left会出现在main下方
.main{width:100%;height:400px;background:red;position:relative;
}
.left{ width:200px;height:400px;position:absolute; background:blue;}
.right{height:400px;margin:0 0 0 210px;background:green;}
.foot{height:80px;background:orange;}