相对参照元素进行定位
例如:
#box3{
width:200px;
height:200px;
position:relative;
}
#box4{
width:99%;
position:absolute;
bottom:0;
left:0; /*这条css样式可以省略*/ }
这里面的bottom:0 和bottom:0px 有什么区别吗?
例如:
#box3{
width:200px;
height:200px;
position:relative;
}
#box4{
width:99%;
position:absolute;
bottom:0;
left:0; /*这条css样式可以省略*/ }
这里面的bottom:0 和bottom:0px 有什么区别吗?
2016-06-17
举报