css3 反选伪类选择器:not的用法

html-css020

css3 反选伪类选择器:not的用法,第1张

语法:

E:not(){ sRules }

说明:

匹配不含有s选择符的元素E。

例如:

1.选择所有不包含class3的元素

2.选择含有子元素的pre元素

:empty 选择器匹配没有子元素(包括文本节点)的每个元素

3.选择所有样式不为abc的p元素

伪类选择器是CSS五种选择器当中应用最灵活的一种,其包含六个分类。

1、动态伪类选择器

不同的状态,使用不同的样式。

E: link

E: visited

E: active

E: hover

E: focus

2、目标伪类选择器

用来匹配页面的URI中某个标识符的目标元素。

E: target

选择匹配E的所有元素,且匹配元素被相关URL指向。

3、语言伪类选择器

用来匹配使用指定语言的元素。

E: lang(language)

4、元素状态伪类选择器

当元素处于某种状态下时,才起作用,在默认状态下不起作用。

E: checked

eg: input[type="checkbox"]:checked{}

E: enabled

eg: input[type="text"]:checked{}

E: disabled

eg: input[type="text"]:disabled{}

5、结构伪类选择器

这个就比较多了,平时用的也比较频繁。

: nth-child

: nth-last-child

: nth-of-type

: nth-last-of-type

: first-child

: last-child

: only-child

: first-of-type

: last-of-type

: only-of-type

: root 匹配元素所有在文档的根元素

: empty 选择没有子元素的元素,且不包含节点

6、否定伪类选择器

E: not(F) 匹配所有除F外的E元素