无法在非主页上隐藏页脚

Ela*_*ine 1 css wordpress

我试图隐藏非主页的页脚.以下是我的尝试,这是网站

.home #first  {
    width:950px;
    margin-top:20px ;
    border-top: 1px dotted #9bacd4;
    background:#ff0000;
}


.home #first img {
    margin:5px;
}

.home #first h3
{
   font-size:16px;
   font-weight:bold;
   margin:5px 0px 15px 15px;    
}

#first {
    display:none;
}
Run Code Online (Sandbox Code Playgroud)

Mir*_*ari 5

无论你的CSS规则.home #first#first使用.如果您有重叠属性,则最具体的胜利.所以在这种情况下添加display:block.home #first选择器,它将覆盖display:none,.home #first更具体.