Firefox白色间距

时间:2013-03-18 20:04:46

标签: html css whitespace

刚建立我的新网站,在Chrome浏览器中看起来很完美,但在Firefox(OS)上查看时,页面底部大约有15个像素空间。只是无法弄清楚造成它的原因。

http://www.adamhuxtable.com/

1 个答案:

答案 0 :(得分:3)

尝试从p中的footer元素中删除下边距。例如,将您的layout.css文件更新为以下内容(第195行):

footer p {
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 0;
    margin-top: 20px;
    text-align: center;
}