I'm having some trouble with my dynamic content. Let me illustrate it for you:
This is how my HTML code looks:
<div id="header"> ... </div>
<div id="container">
<div class="block"> ... </div>
<div class="block"> ... </div>
<div class="block"> ... </div>
<div class="block"> ... </div>
</div>
<div id="footer"> ... </div>
My query is: How can I make the container fluid while keeping the header and footer fixed? The blocks inside the container are set to 50% height and width, so only the container needs to be at 100% height (minus the fixed header and footer).