Sticky footer does not work with IE8

941 views Asked by At

I have a page with a sticky footer. Works fine with Firefox but not with IE8. The page is built on Blueprint and I used the margin-top: -48px; technique.

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

#footer_container {
    position: relative;
    margin-top: -48px;
    padding-top: 10px;
    clear: both;
}

Can someone help me?

1

There are 1 answers

0
thirtydot On BEST ANSWER

You need to add a doctype as the very first line:

<!DOCTYPE html>

Without it, IE is using quirks mode.