粘性页脚不适用于IE8



我有一个带有粘性页脚的页面。适用于Firefox,但不适用于IE8。该页面是基于Blueprint构建的,我使用了margin-top: -48px;技术。

#wrapper {
    position: relative;
    min-height: 100%;
}
#footer_container {
    position: relative;
    margin-top: -48px;
    padding-top: 10px;
    clear: both;
}

有人能帮我吗?

您需要添加一个doctype作为第一行:

<!DOCTYPE html>

没有它,IE正在使用怪癖模式。

相关内容

  • 没有找到相关文章

最新更新