Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/78.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html Chrome可以工作,但在FF上,我的页脚是隐藏的——底部的填充不起作用_Html_Css_Google Chrome_Firefox - Fatal编程技术网

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

Html Chrome可以工作,但在FF上,我的页脚是隐藏的——底部的填充不起作用,html,css,google-chrome,firefox,Html,Css,Google Chrome,Firefox,我有填充底部:40px在我的一个包装div的底部,以便允许我的位置绝对“设计人”文本显示在页面底部 它可以在Chrome中使用,但在Firefox中,填充底部没有效果,包装器直接点击页面底部 您可以在此处查看网站: 谢谢你的帮助 从页脚中删除底部:0 .footer { bottom: 0; <==// Remove this color: #EDEDED; font-family: 'Roboto',sans-serif; font-size: 0.9

我有
填充底部:40px在我的一个包装div的底部,以便允许我的位置绝对“设计人”文本显示在页面底部

它可以在Chrome中使用,但在Firefox中,填充底部没有效果,包装器直接点击页面底部

您可以在此处查看网站:


谢谢你的帮助

从页脚中删除
底部: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;
}
.footer{

底部:0;嘿,康纳,欢迎来到StackOverflow。你应该在这里发布你的相关代码,这样人们可以更容易地提供帮助(例如,你认为可能是其他CSS/HTML导致了这个问题)。此外,你能详细说明一下这个问题吗?我看不出FF 23和Chrome 24有什么区别。你在Internet Explorer上也有问题,我建议你检查你的样式并在浏览器上使用调试工具,F12应该在大多数浏览器上使用它们。确认Grailsgay的评论,我看到的唯一区别是wrapper在FireFox中更高。因为表单元素更高。至少对我来说。下面的答案解决了你的问题吗?答案没有解决问题,但引入了新的问题…:这会使页脚出现在FireFox上,但不会像在Chrome上那样落后于其他所有内容。等等…我在Chrome 29上。这是测试版吗?让我在另一个Chrome上试试版本,我会给你回复的,可能是因为我有测试版,所以chrome上有些东西在工作。我最终把代码完全换成了其他的东西。无论如何,谢谢你的帮助。