考虑一个带有 html的简单示例
<div class="parent">
<div class="child">
</div>
</div>
和 CSS
.parent{
position:relative;
background:red;
width:200px;
height:40px;
}
.child{
position:absolute;
top:40px;
left:30px;
width:70px;
height:70px;
background:blue;
}
将具有绝对位置的 DIV 放置在其父级下方(具有相对位置)。
在这个例子中,我将绝对的顶部等于父相对的高度。
当高度未知(父母和孩子)时,如何在父母下方对齐绝对DIV ?