I have been attempting to align a div at the bottom of its parent div without success. I tried the approach outlined in the following code snippet:
Initially, I believed that setting the CSS properties as shown below would achieve the desired result:
.bottom-menu {
position: absolute;
bottom: 0;
height: 50px;
background-color: yellow;
}
However, as evidenced by the fiddle, it did not work as expected. Can anyone provide guidance on how to accomplish this alignment?