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.

Here is the HTML code:

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

And here is what I want to achieved, even though it's not valid CSS, but I think you will understand my point:

html,body
{
 min-width:800px;
 max-width:1680px;
 width:100%;
 height:100%
}
#header
{
  width:100%;
  height:100px;
  background:#CCCCCC url(images/header_bg.gif) repeat-x; 
}
#footer
{
  width:100%;
  height:10px;
}
#container
{
 width:100%;
 height:100%-100px-10px;   /* I want #container to take all the screen height left */
}

is it possible to only use CSS for achieving some layout like this: the whole body will fit the screen size always, however the #header and #footer areas are with fixed height, and then the main div takes all the height left. Thanks!!

share|improve this question

2 Answers

Something like this? http://limpid.nl/lab/css/fixed/header-and-footer or you don't want the main content to scroll?

share|improve this answer
this is kind of what I'm looking for, however I don't want to the scroll bar appear for the whole page(even though the header and footer are fixed). Is it possible to only show the scrollbar inside the div#content (in your example), because I will have more divs inside div#content, I don't want lots of scrollbars at the right side. – WilliamLou Dec 17 '09 at 20:29

something like this: http://ryanfait.com/sticky-footer/ might also be what you are looking for

share|improve this answer
what is this trying to demonstrate? just looks like a footer to me... – Jason Dec 17 '09 at 20:21

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.