3

看看这个:http: //jsfiddle.net/unimous/88uqJ/

<div id="d1">
    <div id="d2">
</div>
</div>

#d1 {
    height: 3000px;
    background-color: red;
}

#d2 {
    background-color: green;
    height: 40px;
    width: 40px;
    position: absolute;
    bottom: 0px;
}

我想让 div d2 出现在 d1 的底部,而不是屏幕的底部。

为什么position: absolute在这里不起作用?

4

1 回答 1

5

添加position:relative到您的 d1 div

jsFiddle 示例

绝对定位的元素相对于它们最近的定位祖先进行定位。

于 2013-08-19T16:22:34.570 回答