:not(X) 是 CSS 中的一个否定伪类(选择器),并且接受一个简单的选择器作为参数。本质上,可以使任一其他选择器(作为参数)。
:not(选择器)匹配传递参数选择器未选择的元素。传递参数或许不包括增加的选择器或者伪元素选择器。
/* the X argument can be replaced with any simple selectors */
:not(X) {property: value;}
在这个例子中,有一个 class 为“different”的 li 元素:
<ul>
<li></li>
<li class="different"></li>
<li></li>
</ul>
CSS 将会选择除了 class 为“different”外的所有 li 元素。
/* Style everything but the .different class */
li:not(.different) {font-size: 3em;}
可以将伪类选择器应用到所有简单选择器(包括元素类型选择器、通用选择器、属性选择器、类选择器、ID 选择器、伪类选择器)上来产生同样的效果。
p:not(:nth-child(2n+1)) {font-size: 3em;}
但是如果我们使用伪元素选择器作为参数将不会产生我们预期的效果。
:not(::first-line) { /* ::first-line is a pseudo element selector and not a simple selector */
color: white;
}
:not() 多种用法可视化表示图
:not() 伪类的优先级是其参数的优先级。:not() 伪类并不会像其他伪类选择器那样给选择器增加优先级。
否定伪类选择器不支持嵌套,所以:not(:not(…)) 是永远不被允许的。开发者需要注意伪元素不是简单选择器(simple selector),因此作为:not() 伪类的参数是无效的。另外,当使用属性选择器时也需要注意,因为部分属性选择器不被普遍支持。在:not() 选择器下链式使用另一个:not() 选择器也是禁止的。
学习更多的 CSS 技术可以关注我的博客:CODECOLOR