I have a specific segment of HTML that I am trying to align to the bottom of it's parent. The parent's height however, is unknown. Absolute positioning will not work since the height is unknown (believe me, I've tried the widely documented relative position with absolute child elements and bottom: 0). The content in question is within a sidebar as illustrated below:
------------------
| stuff |con|
| stuff |ten|
| stuff | |
| | |
| |bot| <--- This is what I want to align to the bottom
------------------
Any clever solutions to this perhaps?
EDIT:
Absolute position will not work in this scenario. The content that needs to be aligned to the bottom can potentially be larger than the content inside the left column, which will effectively create this:
------------------
| stuff |con|
| stuff |ten|
| stuff | |
| | |
| |bot|
-------------|bot|
|bot|
|bot| <--- Unintended trailing...