I've got a floating div. That div is nested inside an html element that recieves its height from one of its children. How do I get my div to stick to the bottom?
Here's a sample of my problem. I want to get my "Hello all" to the bottom of the parent.
<div style="overflow:hidden;border:1px solid green;clear:both">
<div style="float:left">
<p> Hi All </p>
</div>
<div style="height:150px;width:50px; background-color:red;float:left">
</div>