微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

CSS页脚颜色!无法更改!

如何解决CSS页脚颜色!无法更改!

| 我正在尝试更改网站的页脚颜色。我已经尝试了一切,但似乎没有用! 这是我的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%; 
}
    

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。