1

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

它在 Chrome 中有效,但在 Firefox 中,padding-bottom 无效,包装器直接到达页面底部。

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

http://ellisfinancialcorp.com/

谢谢你的帮助!

4

1 回答 1

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;
}
于 2013-09-02T18:38:48.500 回答