選擇器示例示例說明CSS
.class.intro選擇所有class="intro"的元素1
#id#firstname選擇所有id="firstname"的元素1
**選擇所有元素2
elementp選擇所有<p>元素1
element,elementdiv,p選擇所有<div>元素和<p>元素1
element elementdiv p選擇<div>元素內(nèi)的所有<p>元素1
element>elementdiv>p選擇所有父級是 <div> 元素的 <p> 元素2
element+elementdiv+p選擇所有緊接著<div>元素之后的<p>元素2
[attribute][target]選擇所有帶有target屬性元素2
[attribute=value][target=-blank]選擇所有使用target="-blank"的元素2
[attribute~=value][title~=flower]選擇標(biāo)題屬性包含單詞"flower"的所有元素2
[attribute|=language][lang|=en]選擇一個lang屬性的起始值="EN"的所有元素2
:linka:link選擇所有未訪問鏈接1
:visiteda:visited選擇所有訪問過的鏈接1
:activea:active選擇活動鏈接1
:hovera:hover選擇鼠標(biāo)在鏈接上面時1
:focusinput:focus選擇具有焦點(diǎn)的輸入元素2
:first-letterp:first-letter選擇每一個<P>元素的第一個字母1
:first-linep:first-line選擇每一個<P>元素的第一行1
:first-childp:first-child指定只有當(dāng)<p>元素是其父級的第一個子級的樣式。2
:beforep:before在每個<p>元素之前插入內(nèi)容2
:afterp:after在每個<p>元素之后插入內(nèi)容2
:lang(language)p:lang(it)選擇一個lang屬性的起始值="it"的所有<p>元素2
element1~element2p~ul選擇p元素之后的每一個ul元素3
[attribute^=value]a[src^="https"]選擇每一個src屬性的值以"https"開頭的元素3
[attribute$=value]a[src$=".pdf"]選擇每一個src屬性的值以".pdf"結(jié)尾的元素3
[attribute*=value]a[src*="runoob"]選擇每一個src屬性的值包含子字符串"runoob"的元素3
:first-of-typep:first-of-type選擇每個p元素是其父級的第一個p元素3
:last-of-typep:last-of-type選擇每個p元素是其父級的最后一個p元素3
:only-of-typep:only-of-type選擇每個p元素是其父級的唯一p元素3
:only-childp:only-child選擇每個p元素是其父級的唯一子元素3
:nth-child(n)p:nth-child(2)選擇每個p元素是其父級的第二個子元素3
:nth-last-child(n)p:nth-last-child(2)選擇每個p元素的是其父級的第二個子元素,從最后一個子項(xiàng)計(jì)數(shù)3
:nth-of-type(n)p:nth-of-type(2)選擇每個p元素是其父級的第二個p元素3
:nth-last-of-type(n)p:nth-last-of-type(2)選擇每個p元素的是其父級的第二個p元素,從最后一個子項(xiàng)計(jì)數(shù)3
:last-childp:last-child選擇每個p元素是其父級的最后一個子級。3
:root:root選擇文檔的根元素3
:emptyp:empty選擇每個沒有任何子級的p元素(包括文本節(jié)點(diǎn))3
:target#news:target選擇當(dāng)前活動的#news元素(包含該錨名稱的點(diǎn)擊的URL)3
:enabledinput:enabled選擇每一個已啟用的輸入元素3
:disabledinput:disabled選擇每一個禁用的輸入元素3
:checkedinput:checked選擇每個選中的輸入元素3
:not(selector):not(p)選擇每個并非p元素的元素3
::selection::selection匹配元素中被用戶選中或處于高亮狀態(tài)的部分3
:out-of-range:out-of-range匹配值在指定區(qū)間之外的input元素3
:in-range:in-range匹配值在指定區(qū)間之內(nèi)的input元素3
:read-write:read-write用于匹配可讀及可寫的元素3
:read-only:read-only用于匹配設(shè)置 "readonly"(只讀) 屬性的元素3
:optional:optional用于匹配可選的輸入元素3
:required:required用于匹配設(shè)置了 "required" 屬性的元素3
:valid:valid用于匹配輸入值為合法的元素3
:invalid:invalid用于匹配輸入值為非法的元素3