我把父元素写成绝对的,子元素写成相对的也行。。。有区别吗
#box3{
width:200px;
height:200px;
position:absolute;
}
#box4{
width:99%;
position:relative;
top:-50px;
}
我这样设置也行,请问区别在哪
#box3{
width:200px;
height:200px;
position:absolute;
}
#box4{
width:99%;
position:relative;
top:-50px;
}
我这样设置也行,请问区别在哪
2015-12-16
举报