在除依第8条外的每一个浏览器中,一个绝对位置的元素都可以按照拥有相对位置的最接近的父母定位。
下表显示两批散射线。 顶端有以下立场:相对而言,被nes住的绝对位置要素不尊重其边界(即8,位于网页底部,而不是母体底部四)。
是否有任何人知道这样做的办法?
<style>
#top {
position: relative;
background-color: #ccc;
}
#position_me {
background-color: green;
position: absolute;
bottom: 0;
}
#bottom {
background-color: blue;
height: 100px;
}
</style>
<table>
<tr>
<td><div id="top"> Div with id="top"
<div id="position_me"> Div with id="position me" </div>
</div>
<div id="bottom"> Div with id="bottom"
<p>Lorem ipsum dolor sit amet.</p>
</div></td>
</tr>
</table>