> CSS在线开发手册 > :not(selector)

实例

为每个并非<p>元素的元素设置背景颜色:

:not(p)
{
background:#ff0000;
}
运行一下 »

定义和用法

:not(selector) 选择器匹配每个元素是不是指定的元素/选择器。

浏览器支持

:not(<i>selector</i>):not(<i>selector</i>):not(<i>selector</i>):not(<i>selector</i>):not(<i>selector</i>)

所有主流浏览器都支持 :not 选择器。

注意: IE8 及更早IE版本不支持 :not 选择器。

上一篇:
下一篇: