目标元素与目标不是特定的类

时间:2016-11-17 22:17:58

标签: css css-selectors

如何定位与_BLANK目标但没有特定类别的链接?

a[target="_BLANK"] {
   // Do something if this link isn't .skip-this class
}

1 个答案:

答案 0 :(得分:3)

只需使用CSS :not选择器

即可

<强> CSS

a[target="_BLANK"]:not(.skip-this) {
   color: red;
}

&#13;
&#13;
a[target="_BLANK"]:not(.skip-this) {
   color: red;
}
&#13;
<a href="" target="_BLANK" class="skip-this">Hello</a>
<a href="" target="_BLANK">Hello</a>
&#13;
&#13;
&#13;