我一直在经历CSS Positions articles on Alistapart.下面的片段引起了我的注意,无法理解背后的理论.@H_404_2@
在html / css下面显示两个框,一个在另一个上面.但是,如果我将#Box_1的位置更改为绝对,那么#Box_2会重叠#Box_1.@H_404_2@
@H_404_2@
Box_1 {
position: relative;
width: 200px;
height: 200px;
background: #ee3e64;
}
#Box_2 {
position: absolute;
width: 200px;
height: 200px;
background: #44accf;
}
Box_1">