2.18 定位(定位属性:position,以下属性都需要top、bottom、left、right配合使用)
1、Absoulute:绝对定位特点:(1)以页面的左上角为原点 (2)不保留原来的位置 (3)z-index调节图层的顺序
......
<style type="text/css">
#a,#b,#c{
width:200px;
height:200px;
background-color:#FF0000;
}
#b{
background-color:#0000FF;
position:absolute;
left:120px;
top:120px;
}
#a{
position:absolute;
top<