CSS - 将:not()属性应用于除一个以外的所有wordpress页面

时间:2017-10-19 13:35:58

标签: html css wordpress attributes

如何转换此代码

:not( .page-id-2 .custom-header-image) {
    background: none !important;
    background-color: #ccc !important;
    padding-top: 5%;
    padding-bottom: 5%;
    height: 200px;
}

恰恰相反?

我想将css应用于除page-id 2之外的所有页面。

当然,这不起作用:

In [4472]: A + B.iloc[0]
Out[4472]:
      col1  col2
row1   110   220
row2   104   205
row3   120   230

过去30分钟一直在尝试几种组合,没有运气。

1 个答案:

答案 0 :(得分:2)

您只需要从:not参数中删除第二个类。

一个例子,使用文本而不是图像......

.page-id-2 .custom-header-image {
  color: red;
}

:not(.page-id-2) .custom-header-image {
  color: black;
}
<div class="page-id-2">
  <p class="custom-header-image">I should <strong>not</strong> be red</p>
</div>