似乎无法摆脱巨大的页脚

时间:2013-08-09 20:39:46

标签: html css

我在这里有这个页面:

http://www.cooperstandardperformance.com/content/test-blank-page

而且我似乎无法摆脱这个巨大的页脚 - 我可以用Firebug看到一个表示巨大页脚的页脚或样式。

我希望页面一直是白色到底 - 我哪里错了?我唯一能看到的可能是这个原因:

background: none repeat scroll 0 0 #2B296A;

是吗?我应该改为#FFF;并完成它?或者还有其他我没有注意到的事情。

6 个答案:

答案 0 :(得分:1)

background标记中删除body样式。

答案 1 :(得分:1)

根据萤火虫的说法,你在第122行的样式表¹中的body标签上有背景颜色:

body {
    background: none repeat scroll 0 0 #001F3C;
  ...
}

¹http://www.cooperstandardperformance.com/sites/all/themes/cooperstd/css/style.css?mr8j5a

通过firebug工程删除背景颜色。

答案 2 :(得分:0)

为您的html标记添加背景色或从body标记中删除蓝色。

答案 3 :(得分:0)

请勿通过stylingbody提供任何idclass标记。 例如。

<body>
//content goes here...
</body>

在你的css中:

body {
  background: #fff; 
  ...

}

答案 4 :(得分:0)

问题是你的div content_column没有伸展到页面底部,它的背景颜色与你设置的身体背景颜色不同。你描述的“页脚”实际上并不是页脚,它只是页面的其余部分。

有几种方法可以解决这个问题。您可以定义content_column div的高度以扩展到页面底部,由于兼容性问题,这变得非常复杂。或者您可以将正文背景颜色设置为与content_column div相同,反之亦然。

答案 5 :(得分:0)

转到

http://www.cooperstandardperformance.com/sites/all/themes/cooperstd/css/style.css?mr8j5a 在这里你会看到..

`body {
background: none repeat scroll 0 0 #001F3C;
font-size: 1.4rem;
line-height: 2rem;
}`

这里#001F3C导致身体变蓝......

#001F3C更改为#FFFFFF