Chrome可以工作,但在FF上,我的页脚隐藏在底部,不起作用

时间:2013-09-02 18:31:11

标签: html css google-chrome firefox

我在其中一个包装器div的底部有padding-bottom:40px;,以便我的位置绝对“设计为”文本显示在页面底部。

它可以在Chrome中运行,但在Firefox中,填充底部没有任何效果,包装器会直接点击页面底部。

您可以在此处查看该网站:

http://ellisfinancialcorp.com/

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

从页脚中删除bottom: 0

.footer {
    bottom: 0;  <==// Remove this
    color: #EDEDED;
    font-family: 'Roboto',sans-serif;
    font-size: 0.9em;
    font-weight: 100;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 1;
}