codecamp

CSS3 :not 选择器

CSS3 :not 选择器

CSS完整选择器完整CSS选择器参考手册

定义和用法

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

否定选择器允许您反转任何选择。此选择器在CSS3中添加。它具有以下格式:

not(selector)
Examples

实例

实例

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

:not(p)
{
  background:#ff0000;
}

尝试一下 »

浏览器支持

表格中的数字表示支持该选择器的第一个浏览器的版本号。

选择器     
:not()4.09.03.53.29.6

CSS完整选择器完整CSS选择器参考手册

CSS :link 选择器
CSS3 :nth-child() 选择器
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }