如何使用CSS将元素放在另一个元素的底部?


How can place an element at the bottom of another element using CSS?

本问题已经有最佳答案,请猛点这里访问。

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

1
2
3
4
5
6
7
8
9
10
11
12
#d1 {
    height: 3000px;
    background-color: red;
}

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

我想让div的底部D1 D2的出现在屏幕上的困难。

为什么position: absolute不工作吗?


将EDOCX1[0]添加到您的d1分区

JSfiddle示例

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