Possible Duplicate:
How do I force a DIV block to extend to the bottom of a page even if it has no content?
I have a div here that i want to extend all the way to the bottom of the page.
I want to extend bottomHalf all the way down basically no matter the resolution it will just go all the way down.
I put height: 100%;
in bottomHalf but its not working
<div id="navigation">
blah blah
</div>
<div id="bottomHalf">
EXTEND ALL THE WAY!!!
</div>
CSS
#navigation {
margin: 0 auto;
width: 990px;
height: 55px;
background-image:url(images/bg.jpg);
background-repeat:no-repeat;
}
#bottomHalf {
margin: 0 auto;
width: 990px;
height: 100%;
background-color: #4d3c37;
}
Here is a jsiddle example