Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
CSS - percentage height

I can't get the middle div of 3 divs to fit 100% of available space.

<body>
<div id="container">
    <div id="header">
    </div>
    <div id="content">
    </div>
    <div id="footer">
    </div>
</div>
</body>

My CSS is:

html, body {
    margin: 0;
    padding: 0;
    border:1px;
    vertical-align:top;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size:14px;
    color:#333;
    height: 100%;
}
#container {
    height: 100%;
    width: 100%;
}
#header {
    height: 100px;
    width: 100%;
    background: #069;
}
#content {
    height: 100%;
    width: 100%;
    background: #F60;
}
#footer {
    height: 75px;
    width: 100%;
    background: #060;
}

Center div is in effect being 100%, but its not fitting available space.

It is doing something like this: If the screen is 500px

30px
100% (500px)
30px

What I need is:

30px
100% (460px)
30px

Is this possible withouth using javascript?

Thanks a lot

EDIT:
Sorry I meant Height I have 3 elements, header, middle and footer. Header and footer have fixed height, but I want middle to fit all available space

Found another solution based on other stackoverflow question:

* { margin: 0; padding: 0 }
html, body {
    margin: 0;
    padding: 0;
    vertical-align:top;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size:14px;
    color:#333;
    height: 100%;
    border: 0;
}
#header
{
    height: 100px;
    background:#C60;
}

#container
{
    min-height: 100%; 
    height: auto !important; /*Cause footer to stick to bottom in IE 6*/
    height: 100%; 
    margin: 0 auto -100px; /*Allow for footer height*/
    vertical-align:bottom;
    background:#096;
}

#footer
{
    height: 100px; /*Push must be same height as Footer */
    background:#C60;
}

HTML

<body>
<div id="container">
<div id="header"> </div>
<div id="content"> </div>
</div>
<div id="footer"> </div>
</body>
share|improve this question
I do not understand what you're asking. 100% means 100% of the width of the parent element -- so if you're in a 500px wide space, 100% is all 500px. Or do you mean you want it to grow vertically? – Roddy of the Frozen Peas Jun 29 '12 at 15:15
Sorry I meant Height I have 3 elements, header, middle and footer. Header and footer have fixed height, but I want middle to fit all available space – Jorge Jun 29 '12 at 15:21

marked as duplicate by casperOne Jul 2 '12 at 15:49

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 3 down vote accepted

Try something like this jsfiddle. I tweaked your HTML to add a "wrapper" around the "container" div, and move the "footer" out of both.

share|improve this answer
Thanks that worked like a charm, I will study it to see what's going on. – Jorge Jun 29 '12 at 15:26
@Jorge essentially it's an adaptation of a "sticky" header. If your footer is 100px tall, you give it relative positioning and -100px margin, and then give the wrapper of the above content a padding-bottom of 100px. – Roddy of the Frozen Peas Jun 29 '12 at 15:39
This is a slick way of accomplishing this. Nice one! – Phil Jun 29 '12 at 15:41
I found another solution based on this: stackoverflow.com/questions/206652/… – Jorge Jun 29 '12 at 15:48

I think that a good idea would be to fiddle with 'display:flexbox' to achieve that kind of responsiveness. Here is a good article about it.

share|improve this answer
Oh this is seriously cool. +1. Pity it's only for CSS3 and not backwards compatible without hacks. – Roddy of the Frozen Peas Jun 29 '12 at 15:51

You could position the div absolutely:

<body>    
    <div id="header">
    </div>
    <div id="content">
    </div>
    <div id="footer">
    </div>
</body>

and

#header {
    position:absolute;
    top:0px;
    left:0px;
    right:0px;
    height: 100px;
    background: #069;
}
#content {
    position:absolute;
    top: 100px;
    bottom: 75px;
    left:0px;
    right:0px;
    background: #F60;
}
#footer {
    position:absolute;
    bottom: 0px;
    height: 75px;
    left:0px;
    right:0px;
    width: 100%;
    background: #060;
}
share|improve this answer
Thanks, it didn't work, still the same behaviour. – Jorge Jun 29 '12 at 15:19
Oops, wrong version. Updated the answer. – DZittersteyn Jun 29 '12 at 15:21

Not the answer you're looking for? Browse other questions tagged or ask your own question.