I am attempting to position two boxes on top of each other at the bottom of a different div. Here is the code I have:
<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>
However, I am facing an issue where the boxes are positioned at the top of their container instead of the bottom. Can someone provide assistance?