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.

If the page doesn't have much content, like 300 pixels or so, the footer will appear in the middle of the page on a 1024 resolution.

How could I make my footer show to bottom of the page without knowing the footer height?

I've tried this solution:

/* css */
html, body {
    height: 100%;
}

#container {
    min-height: 100%;
    position: relative;
}

#footer {
    position: absolute;
    bottom: 0;
}


<!-- html -->
<html>
<head></head>

<body>
  <div id="container">
    <div id="footer"></div>
  </div>
</body>
</html>

but the problem is that I would need to add padding-bottom: (footerheight); in the element before the #footer. This is not possible because the footer height is variable depending on the page...

share|improve this question
Not necessarily the most efficient method but you could just have embedded CSS on each page which adjust those specific elements. – DaiYoukai Jan 22 '11 at 0:11
Do you have an option to use Javascript/jQuery? Seems difficult or impossible to accomplish with just CSS unless you follow Archonix suggestion. – mVChr Jan 22 '11 at 0:18
jquery makes the page "flicker" until the footer gets fixed. if there's a javascript solution that doesn't produce this flicker, yes I'd love to use it :) – Alex Jan 22 '11 at 0:26
It depends how you accomplish it. You can have the footer animate up from a height:0 in order to disguise the fact that it's positioning late, or some-such. I'll try to take a stab at it after dinner – mVChr Jan 22 '11 at 1:29

1 Answer

up vote 2 down vote accepted

Why don't you just use min-height on the content area so if u set the min-height to 600px if theres only 300px of content it will pad the footer down another 300px so it isn't in the middle of the screen

share|improve this answer
How do you know 600px isn't in the middle of the screen? What if I have 1200px screen? – himself Jul 6 '12 at 13:06

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.