0

我想在页面底部修复我的页脚。它在 Internet Explorer 上运行,更改文档类型会改变我页面中的许多内容,因此我无法使用它。

还有其他解决方案吗?

.footer{
    width:100%;
    height:49px;
    background-image:url(../img/footer-bg.gif);
    background-repeat:repeat-x;
    bottom:0;
    left:0;
    right:0;
    z-index:99;
    float:left;  
    overflow:hidden;
    position:fixed;
}
4

1 回答 1

-1

您可以使用:

  • html #element { 位置:绝对;顶部:表达式(document.compatMode=="CSS1Compat"? document.documentElement.scrollTop+100+"px" : body.scrollTop+100+"px"); }

替换 100+"px"

于 2012-05-08T14:19:37.077 回答