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?
You need to add a doctype as the very first line:
Without it, IE is using quirks mode.