如何在不依赖父选择器或使用!important的情况下添加CSS特异性?

时间:2018-03-21 15:21:29

标签: css css-specificity

blue应为蓝色而不添加ID到元素,不使用JavaScript且不知道父#id,因为它们可以在将来更改,同时允许JavaScript设置适用的样式属性正确。



custom-tag {
  color: blue; 
  /* 
   * the above should have the specificity of exactly 2×ids + 1×tag
   */
}


/*  later loaded CSS, which is not controllable... */

#one custom-tag, #two custom-tag {
  color: red;
}

<div id="one">
  <custom-tag>blue</custom-tag>
  <custom-tag style="color:orange">orange</custom-tag>
</div>

<div id="two">
  <custom-tag style="color:green">green</custom-tag>
  <custom-tag>blue</custom-tag>
</div>
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:2)

使用:not() +不存在所需特异性的选择器,在不需要父母的情况下提高选择特异性:

&#13;
&#13;
any-tag:not(#bogus_id):not(#bogus_id) {
  color: blue; 
}

#one any-tag, #two any-tag  {
  color: red;
}
&#13;
<div id="one">
  <any-tag>blue</any-tag>
  <any-tag style="color:orange">orange</any-tag>
</div>

<div id="two">
  <any-tag style="color:green">green</any-tag>
  <any-tag>blue</any-tag>
</div>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

你也可以像这样叠加选择器:

.selector.selector

这会增加特异性。

你也可以堆叠它们两次以上。

适用于所有浏览器。