static,relative,absolute,fixed
定位的四个位置:left,right,top,bottom
定位属性:position,有四种状态值
1.static:静态定位,按元素在文档流中的顺序排列...,这是默认值,四个位置无效
2.relative:相对定位,元素相对于原来它在文档流中的位置进行定位,四个位置有效
3.absolute:绝对定位,元素相对于它的定位父级定位,脱离文档流,四个位置有效...:200px;
height: 200px;
background-color: lightskyblue;
position: relative;
top:0;
left:200px;
}
.box2