3:empty p:empty 選擇全部沒有子元素的p元素字體
4:enabled input:enabled 選擇全部啓用的表單元素ui
5:first-of-type p:first-of-type 選擇每一個父元素是p元素的第一個p子元素spa
6:in-range input:in-range 選擇元素指定範圍內的值orm
7:invalid input:invalid 選擇全部無效的元素文檔
8:last-child p:last-child 選擇全部p元素的最後一個子元素get
9:last-of-type p:last-of-type 選擇每一個p元素是其母元素的最後一個p元素input
10:not(selector) :not(p) 選擇全部p之外的元素it
11:nth-child(n) p:nth-child(2) 選擇全部p元素的第二個子元素io
12:nth-last-child(n) p:nth-last-child(2) 選擇全部p元素倒數的第二個子元素ast
13:nth-last-of-type(n) p:nth-last-of-type(2) 選擇全部p元素倒數的第二個爲p的子元素
14:nth-of-type(n) p:nth-of-type(2) 選擇全部p元素第二個爲p的子元素
15:only-of-type p:only-of-type 選擇全部僅有一個子元素爲p的元素
16:only-child p:only-child 選擇全部僅有一個子元素的p元素
17:optional input:optional 選擇沒有"required"的元素屬性
18:out-of-range input:out-of-range 選擇指定範圍之外的值的元素屬性
19:read-only input:read-only 選擇只讀屬性的元素屬性
20:read-write input:read-write 選擇沒有隻讀屬性的元素屬性
21:required input:required 選擇有"required"屬性指定的元素屬性
22:root root 選擇文檔的根元素
23:target #news:target 選擇當前活動#news元素(點擊URL包含錨的名字)
24:valid input:valid 選擇全部有效值的屬性
25:link a:link 選擇全部未訪問連接
26:visited a:visited 選擇全部訪問過的連接
27:active a:active 選擇正在活動連接
28:hover a:hover 把鼠標放在連接上的狀態
29:focus input:focus 選擇元素輸入後具備焦點
30:first-letter p:first-letter 選擇每一個<p> 元素的第一個字母
31:first-line p:first-line 選擇每一個<p> 元素的第一行
32:first-child p:first-child 選擇器匹配屬於任意元素的第一個子元素的 <p> 元素
33:before p:before 在每一個<p>元素以前插入內容
34:after p:after 在每一個<p>元素以後插入內容
35:lang(language) p:lang(it) 爲<p>元素的lang屬性選擇一個開始值