您可以使用自定义。css覆盖更改并使用body标记针对特定帖子。
如果您查看特定帖子的源代码,它会显示如下内容:
<body class="single single-post postid-1178 single-format-standard mp6 single-author highlander-enabled highlander-light" style="" data-gclp-initialized="true" data-gistbox-initialized="true" cz-shortcut-listen="true">
因此,在css中,您始终可以执行以下操作
body.postid-1178 .some-div {
color: #999;
}
你也可以这样做
body:not(.postid-1178) .some-div {
color: #999;
}
影响除家以外的一切