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.

I have a simple 2-column layout with a footer that clears both the right and left div in my markup. My problem is that I can't get the footer to stay at the bottom of the page in all browsers. It works if the content pushes the footer down, but that's not always the case.

Update:

It's not working properly in Firefox. I'm seeing a strip of background color below the footer when there's not enough content on the page to push the footer all the way down to the bottom of the browser window. Unfortunately, this is the default state of the page.

share|improve this question

12 Answers

up vote 70 down vote accepted

Sticky footer on Google:

Have a <div> with class="wrapper" contain everything. After the wrapper </div>, place the push div, then the footer div.

* {
    margin: 0;
}
html, body {
    height: 100%;
}
.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -142px; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
    height: 142px; /* .push must be the same height as .footer */
}
share|improve this answer
8  
The push div is actually inside the wrapper div, not after it. – Travis Jun 29 '09 at 20:23
4  
It does not work in asp.net with <form> tag – jlp Feb 28 '10 at 12:59
Is there a solution for this not working in asp.net with the <form> tag? – Boone Feb 1 '11 at 5:55
1  
@jlp: You need to add the form tag to the height:100% statement, else it will break the sticky footer. Like this: html, body, form {height: 100%;} – dazbradbury Mar 9 '12 at 13:21
You should really edit the answer to include @Travis's suggestion. "The push div is actually inside the wrapper div, not after it." – sjobe Jun 20 '12 at 9:01
show 2 more comments

You could use position: absolute following to put the footer at the bottom of the page, but then make sure your 2 columns have the appropriate bottom-margin so that they never get occluded by the footer.

#footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
}
#content, #sidebar { 
    margin-bottom: 5em; 
}
share|improve this answer
I've tried this with my similar setup (two columns + footer) and it does not work. – isomorphismes Mar 15 '12 at 6:44
1  
in what way does it not work? – Jimmy Mar 15 '12 at 17:18

Set the CSS for the #footer to:

position: absolute;
bottom: 0;

You will then need to add a padding or margin to the bottom of your #sidebar and #content to match the height of #footer or when they overlap, the #footer will cover them.

Also, if I remember correctly, IE6 has a problem with the "bottom:0" CSS. You might have to use a JS solution for IE6 (if you care about IE6 that is).

share|improve this answer

Here is a solution with jQuery that works like a charm. Tested it in Firefox, Chrome, Safari and Opera.

$(document).ready(function() {
    var height_diff = $(window).height() - $('body').height();
    if ( height_diff > 0 ) {
        $('#footer').css( 'margin-top', height_diff );
    }
});

What it does is: it checks if the height of the window is greater than the height of the body. If it is, then it changes the margin-top of the footer to compensate.

If your footer has a margin-top (of 50 pixels, for example), you will need to change the last part for:

css( 'margin-top', height_diff + 50 )
share|improve this answer

For anyone looking for a ready-made HTML5 solution, try this.

share|improve this answer
simplest way :D – asakura89 Sep 24 '12 at 7:36

I'll add to @Jimmy: You also need to have to declare absolute (or relative) positioning to the element that contains the footer. In your case, it's the body element.

Edit: I tested it on your page with firebug and it seemed to work very well...

share|improve this answer

Here is a site with a floating sticky footer that is technically impressive (whether you like the EXACT aesthetics or not):

http://alltop.com/

(click through to a category like Science to see the floating footer in IE)

You may look into their CSS and see if you can track all their tricks. I find I have my best CSS luck by starting with something that works and trimming away the parts I don't need.

Lesser artists borrow, great artists steal.
— Steve jobs
(quoting Pablo Picasso)

share|improve this answer

Try putting a container div (with overflow:auto) around the content and sidebar.

If that doesn't work, do you have any screenshots or example links where the footer isn't displayed properly?

share|improve this answer

One solution would be to set the min-height for the boxes. Unfortunately it seems that it's not well supported by IE (surprise).

share|improve this answer

I found this simple, short tutorial, Making Your Footer Stay Put With CSS, to work for me when I faced a similar problem with long vertical content overlapping my web pages' footer.

In addition, for my situation, I had to find and remove any unnecessarily large, fixed values defined for height style belonging to other elements in my pages.

share|improve this answer

None of these pure css solutions work properly with dynamically resizing content (at least on firefox and Safari) e.g., if you have a background set on the container div, the page and then resize (adding a few rows) table inside the div, the table can stick out of the bottom of the styled area, i.e., you can have half the table in white on black theme and half the table complete white because both the font-color and background color is white. It's basically unfixable with themeroller pages.

Nested div multi-column layout is an ugly hack and the 100% min-height body/container div for sticking footer is an uglier hack.

The only none-script solution that works on all the browsers I've tried: a much simpler/shorter table with thead (for header)/tfoot (for footer)/tbody (td's for any number of columns) and 100% height. But this have perceived semantic and SEO disadvantages (tfoot must appear before tbody. ARIA roles may help decent search engines though).

share|improve this answer

Use absolute positioning and z-index to create a sticky footer div at any resolution using the following steps:

  • Create a footer div with position: absolute; bottom: 0; and the desired height
  • Set the padding of the footer to add whitespace between the content bottom and the window bottom
  • Create a container div that wraps the body content with position: relative; min-height: 100%;
  • Set the html tag, body tag, and container div to height: 100% for IE6
  • Add bottom padding to the main content div that is equal to the height plus padding of the footer
  • Set the z-index of the footer greater than the container div if the footer is obscured
share|improve this answer

protected by Community Dec 1 '11 at 1:29

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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