问题描述
|
我正在尝试更改网站的页脚颜色。我已经尝试了一切,但似乎没有用!
这是我的CSS的链接:http://pp.atoanavida.com.br/style2.css
这是网页:http://pp.atoanavida.com.br
谢谢!!!!
解决方法
您需要清除
#footer-content
中的浮动元素。
一种简单的方法是将CSS中的“ 1”添加到“ 0”。
我建议您阅读这样的文章,以了解更多信息:http://css-tricks.com/all-about-floats/
, 您的代码中有一些无效的CSS。
在#footer
下,将background: { #77aadd !important;}
更改为:
background: #77aadd !important;
或background-color: #77aadd !important;
编辑
在您的HTML中,在关闭<div id=\"footer\">
之前(在关闭<div id=\"footer-content\">
之后)添加<div style=\"clear:both;\"></div>
。
, 更换
#footer {
clear: both;
background: { #77aadd !important;}
margin: 0; padding: 0;
font: normal .95em/1.5em \'Tahoma\',Trebuchet MS,Sans-serif;
width:100%;
}
与
#footer {
clear: both;
background-color: #77aadd !important;
margin: 0; padding: 0;
font: normal .95em/1.5em \'Tahoma\',Sans-serif;
width:100%;
}
#footer-content
在语法上也有相同的问题,替换
#footer-content {
border-top: 0px solid #EAEAEA;
margin: 0 auto;
padding-left: 15px auto;
background: { #77aadd !important;}
width:100%;
}
与
#footer-content {
border-top: 0px solid #EAEAEA;
margin: 0 auto;
padding-left: 15px;
background-color: #77aadd !important;
width:100%;
}