I have a div #parent which has a min-height:400px;
This div contains 2 child divs, the last of which I want to expand down to the bottom of its parent, despite the amount of content inside of it.
The height of parent is fluid as content can be a lot or very small.
<div id="parent">
<div id="child1"><!-- content here --> </div>
<div id="child2><!-- this div should stretch down to bottom of parent container--></div>
</div>
#parent{min-height:400px;}
Is this at all possible - i can't use any js hacks
Thanks in advance