为什么我的标题背景/颜色不显示?

时间:2014-04-17 23:04:57

标签: css

我不知道造成这种情况的原因,我修改的最后一件事是我的页脚,我验证了,不是那样的。因此我不知道造成这种情况的原因我不知道如何向您展示我的代码。我不知道错误是在CSS还是HTML中,我可能要向你们展示,但它们都有100多行。现在我要在这里放置footerheader CSS代码。

 footer
{
box-shadow: 0px 0px 30px gray;
font-family:arial;
margin-right: -10px;
margin-left: -10px;
margin-bottom: -20px;
background-color: #a8a8a8;
                               }


header
{
    background-color: red;
    margin-top:-10px;
    margin-left:-10px;
    margin-right:-10px;
    margin-bottom:-20px;
    box-shadow: 0px 0px 25px black;
                                        }

1 个答案:

答案 0 :(得分:0)

test.psichologique.com演示中,由于样式表中包含HTML注释,因此样式失败。更改此语法 -

<!-- CSS CODE -->

到这个

/* CSS CODE */

你的风格会起作用。