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.

Is it possible to make the wrapper fill the window height (no scrolling) and the center div scrollable without messing around with pixels and javascript?

<div id="wrapper">
  <h1>Header</h1>
  <div id="center">
    <div style="height:1000px">high content</div>
  </div>
  <div id="footer">Footer</div>
</div>

Basically I want the header to be visible at the top and the footer to be always visible at the bottom and have a scrollable content in the center which occupies the remaning height.
The header, footer and center divs' heights are all unknown (no set px or %, i.e. variable font-size or padding). Is it possible with pure CSS?

share|improve this question
Are you trying to accomplish the same essential thing as in this question? Though variable heights would make it trickier. stackoverflow.com/questions/8555157/… – jblasco Dec 19 '11 at 1:05
Similar but the layout without a fixed height header or footer, so changing the content of header or footer or adding elemets to them, won't affect the css properties of the center div. – danial Dec 19 '11 at 3:19

4 Answers

The correct way to do this with CSS alone is to use display: table and display: table-row. These are supported by all major browsers, starting with IE8. This is not using tables for display. You'll use divs:

.wrapper {
    display: table;
    height: 100%;
    width: 100%;
}
.header, .footer {
    display: table-row;
    background: gray;
}
.content {
    display: table-row;  /* height is dynamic, and will expand... */
    height: 100%;        /* ...as content is added (won't scroll) */
    background: turquoise;
}

That's it. The divs are wrapped as you'd expect. Here's the fiddle - http://jsfiddle.net/dandv/mGk4Z/1/

share|improve this answer
I would like to add the following refinement: jsfiddle.net/6dbyr This allows to have a scrollable area inside the cell that takes up the full height. – user132837 May 13 at 14:30
Argh... and a big breaker, that refinement doesn't work in Firefox. See bugzilla.mozilla.org/show_bug.cgi?id=794644 But this does: stackoverflow.com/questions/12605816/… – user132837 May 14 at 9:05

Using overflow:auto will let you do this.

demo

share|improve this answer
1  
In your example you set the height to 80%, but I don't know the height of the center div, I just want it to take the remaining space. Thanks – danial Dec 19 '11 at 0:22
@danial, do you know the height of the footer and header? (In percents or pixels) – FakeRainBrigand Dec 19 '11 at 0:30
1  
no I don't, I just updated the question. It depends on the font-size, padding and/or other elements that might be added dynamically. – danial Dec 19 '11 at 0:37
If it's possible, I don't know how to do it. The usual approach here is to give the header, content, and footer each a percentage based size. – FakeRainBrigand Dec 19 '11 at 0:45
It can be done with display: table and display: table-row. See my answer. – Dan Dascalescu Sep 3 '12 at 5:04

Yes the easy way to do this is to not have a float on your header or footer and set the interior div(s) to height:100%;

For example

<div id="wrapper">
   <div id="header" style="float:none"><h1>Header</h1></div>
   <div id="center">
      <div style="height:100%;overflow:scroll;">high content</div>
   </div>

  <div id="footer" style="float:none">Footer</div>
</div>

This should make the header and footer both extend to their full content while enabling the middle to scale based on content. Combined with overflow this should work.

KT

share|improve this answer
Just rethinking, the wrapper should also have a style="height:100%" – Kevrone Dec 19 '11 at 0:10
1  
This doesn't work for me. – FakeRainBrigand Dec 19 '11 at 0:27
1  
It doesn't work, the footer will not be visible and the wrapper will become scrollable not the center. I think when you set the height to 100% for center it take the height of the window and pushes the footer down out of view. – danial Dec 19 '11 at 0:35
For some reasons JSFIDDLE doesn't show your example properly. If you save it to an html file and open it, it does actually expand the center but too much that pushes footer out of the screen. – danial Dec 19 '11 at 0:46
Try height:auto; – Kevrone Dec 19 '11 at 1:22
show 1 more comment

So what you are talking about is a sticky footer. I went and did some more research and here is what I have for you.

<div id="wrapper" style="height:100%">
<div id="header" style="float:none;"><h1>Header</h1></div>

<div style="overflow:scroll;float:none;height:auto;">high content</div>

<div id="footer" style="clear:both;position:fixed;bottom:0px;"><h1>Footer</h1></div>
</div>

This will give you a sticky footer. The key is position:fixed and bottom:0px; Unfortunately this means it also hovers above any content in the scrollview. So far there seems to be only Javascript to figure this out but I will keep looking.

share|improve this answer
1  
And it seems from my research that the only way to do what you are asking is via javascript as css doesn't support referenced heights 'i.e height = (page.height - (header.height + footer.height) – Kevrone Dec 19 '11 at 1:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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