为什么box1中position改为absolute后,box3和box4挪到了页面最上方?(如下图)
#box1{
width:200px;
height:200px;
position:absolute;
}
#box2{
position:absolute;
top:20px;
left:30px;
}
/*下面是任务部分*/
#box3{
width:200px;
height:200px;
position:relative;
}
#box4{
width:99%;
bottom:0;
position:absolute;
}