Relative : 对象不可层叠,但将依据left,right,top,bottom
main{height:500px;background:red;position:relative;}
.left{width:200px;height:500px;background:blue;position:absolute;top:0px;left:0;}
或者
main{height:500px;background:red;}
.left{width:200px;height:500px;background:blue;position:absolute;top:50px;left:0;}
main{height:500px;background:red;position:relative;}
.left{width:200px;height:500px;background:blue;position:absolute;top:0px;left:0;}
或者
main{height:500px;background:red;}
.left{width:200px;height:500px;background:blue;position:absolute;top:50px;left:0;}