# 类选择器

选择器 例子 例子描述
.class .intro 选择 class="intro" 的所有元素。
.class1.class2 .name1.name2 选择 class 属性中同时有 name1 和 name2 的所有元素。
.class1 .class2 .name1 .name2 选择作为类名 name1 元素后代的所有类名 name2 元素。
#id #firstname 选择 id="firstname" 的元素。
* * 选择所有元素。
element p 选择所有

元素。

element.class p.intro 选择 class="intro" 的所有

元素。

element*,*element div, p 选择所有
元素和所有

元素。

element element div p 选择
元素内的所有

元素。

element>element div > p 选择父元素是
的所有

元素。

element+element div + p 选择紧跟
元素的首个

元素。

element1~element2 p ~ ul 选择前面有

元素的每个

    元素。

[attribute] [target] 选择带有 target 属性的所有元素。
[attribute*=*value] [target=_blank] 选择带有 target="_blank" 属性的所有元素。
[attribute~=value] [title~=flower] 选择 title 属性包含单词 "flower" 的所有元素。
[attribute|=value] [lang|=en] 选择 lang 属性值以 "en" 开头的所有元素。
[attribute^=value] a[href^="https"] 选择其 src 属性值以 "https" 开头的每个 元素。
[attribute$=value] a[href$=".pdf"] 选择其 src 属性以 ".pdf" 结尾的所有 元素。
[attribute=*value] a[href*="w3schools"] 选择其 href 属性值中包含 "abc" 子串的每个 元素。
:active (opens new window) a:active 选择活动链接。
::after (opens new window) p::after 在每个

的内容之后插入内容。

::before (opens new window) p::before 在每个

的内容之前插入内容。

:checked (opens new window) input:checked 选择每个被选中的 元素。
:default (opens new window) input:default 选择默认的 元素。
:disabled (opens new window) input:disabled 选择每个被禁用的 元素。
:empty (opens new window) p:empty 选择没有子元素的每个

元素(包括文本节点)。

:enabled (opens new window) input:enabled 选择每个启用的 元素。
:first-child (opens new window) p:first-child 选择属于父元素的第一个子元素的每个

元素。

::first-letter (opens new window) p::first-letter 选择每个

元素的首字母。

::first-line (opens new window) p::first-line 选择每个

元素的首行。

:first-of-type (opens new window) p:first-of-type 选择属于其父元素的首个

元素的每个

元素。

:focus (opens new window) input:focus 选择获得焦点的 input 元素。
:fullscreen (opens new window) :fullscreen 选择处于全屏模式的元素。
:hover (opens new window) a:hover 选择鼠标指针位于其上的链接。
:in-range (opens new window) input:in-range 选择其值在指定范围内的 input 元素。
:indeterminate (opens new window) input:indeterminate 选择处于不确定状态的 input 元素。
:invalid (opens new window) input:invalid 选择具有无效值的所有 input 元素。
:lang(language) (opens new window) p:lang(it) 选择 lang 属性等于 "it"(意大利)的每个

元素。

:last-child (opens new window) p:last-child 选择属于其父元素最后一个子元素每个

元素。

:last-of-type (opens new window) p:last-of-type 选择属于其父元素的最后

元素的每个

元素。

:link (opens new window) a:link 选择所有未访问过的链接。
:not(selector) (opens new window) :not(p) 选择非

元素的每个元素。

:nth-child(n) (opens new window) p:nth-child(2) 选择属于其父元素的第二个子元素的每个

元素。

:nth-last-child(n) (opens new window) p:nth-last-child(2) 同上,从最后一个子元素开始计数。
:nth-of-type(n) (opens new window) p:nth-of-type(2) 选择属于其父元素第二个

元素的每个

元素。

:nth-last-of-type(n) (opens new window) p:nth-last-of-type(2) 同上,但是从最后一个子元素开始计数。
:only-of-type (opens new window) p:only-of-type 选择属于其父元素唯一的

元素的每个

元素。

:only-child (opens new window) p:only-child 选择属于其父元素的唯一子元素的每个

元素。

:optional (opens new window) input:optional 选择不带 "required" 属性的 input 元素。
:out-of-range (opens new window) input:out-of-range 选择值超出指定范围的 input 元素。
::placeholder (opens new window) input::placeholder 选择已规定 "placeholder" 属性的 input 元素。
:read-only (opens new window) input:read-only 选择已规定 "readonly" 属性的 input 元素。
:read-write (opens new window) input:read-write 选择未规定 "readonly" 属性的 input 元素。
:required (opens new window) input:required 选择已规定 "required" 属性的 input 元素。
:root (opens new window) :root 选择文档的根元素。
::selection (opens new window) ::selection 选择用户已选取的元素部分。
:target (opens new window) #news:target 选择当前活动的 #news 元素。
:valid (opens new window) input:valid 选择带有有效值的所有 input 元素。
:visited (opens new window) a:visited 选择所有已访问的链接。