定位(position)

2018-11-22  本文已影响21人  优秀的人A

position:relative(相对定位)

.box{
width:100px;
height:100px;
background-color:red;
position:relative;
left:200px;
top:200px;
}

position:absolute(绝对定位)

.box{
width:100px;
height:100px;
background-color:red;
position:absolute;
left:0px;
top:0px;
}

position:fixed(固定定位)

 .box{
width:100px;
height:100px;
background-color:red;
position:fixed;
left:0px;
top:0px;
}
上一篇 下一篇

猜你喜欢

热点阅读