我正在尝试将这些css规则应用于x3 Post-ID,但我不能让它工作--你知道我如何才能做到吗?

时间:2021-07-08 作者:Henry

我正在尝试将这些CSS规则应用于x3帖子ID,但我无法使其正常工作-知道如何才能做到吗?

.postid-209506 .postid-209512 .postid-209513 {
background: url(.jpg);
}
.postid-209506 .postid-209512 .postid-209513 .entry-title{
   display: none;
}
.postid-209506 .postid-209512 .postid-209513 .entry-header #entry-meta{
    display:none;
}
我尝试将它们添加到一起,但没有成功。。。

谢谢你的帮助

1 个回复
SO网友:Jani Taiminen
.postid-209506, .postid-209512, .postid-209513 {
background-image: url(\'.jpg\');
}
.postid-209506 .entry-title, .postid-209512 .entry-title, .postid-209513 .entry-title{
   display: none;
}
.postid-209506 .entry-header #entry-meta, .postid-209512 .entry-header #entry-meta, .postid-209513 .entry-header #entry-meta{
    display:none;
}