我正在尝试将两个盒子堆叠在另一个 div 的底部。我有以下代码:
<div style = "height:400px;width:400px;border:1px solid #000;">
<div style = "position:relative;height:100px;width:100px;border:1px solid #000;bottom:0px;">
</div>
<div style = "position:relative;height:100px;width:100px;border:1px solid #000;bottom:0px;">
</div>
</div>
问题是盒子在容器的顶部而不是底部。请帮忙。