两个wordpress帖子的特定课程

时间:2015-11-07 13:50:11

标签: php css wordpress

我有两个wordpress帖子,我想给他们相同的CSS类,在我的样式表中我说:

.postid-861 .postid-862 #masthead .site-title a.logo-image img {
display: none;
}

这不起作用。我想念什么吗?如果我说:

.postid-861 #masthead .site-title a.logo-image img {
    display: none;
    }

它仅适用于一个帖子。 请建议

1 个答案:

答案 0 :(得分:1)

您可以使用,为不同的类提供相同的属性,如下所示:

.postid-861 #masthead .site-title a.logo-image img , .postid-862 #masthead .site-title a.logo-image img {
   display: none;
}

让我说我有班级imagetitle,我希望他们都有红色背景:

.image , .title {
background-color:#a30;
}