選擇器示例示例說明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>元素內的所有<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]選擇標題屬性包含單詞"flower"的所有元素2
[attribute|=language][lang|=en]選擇一個lang屬性的起始值="EN"的所有元素2
:linka:link選擇所有未訪問連結1
:visiteda:visited選擇所有訪問過的連結1
:activea:active選擇活動連結1
:hovera:hover選擇滑鼠在連結上面時1
:focusinput:focus選擇具有焦點的輸入元素2
:first-letterp:first-letter選擇每一個<P>元素的第一個字母1
:first-linep:first-line選擇每一個<P>元素的第一行1
:first-childp:first-child指定只有當<p>元素是其父級的第一個子級的樣式。2
:beforep:before在每個<p>元素之前插入內容2
:afterp:after在每個<p>元素之後插入內容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"結尾的元素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元素的是其父級的第二個子元素,從最後一個子項計數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元素,從最後一個子項計數3
:last-childp:last-child選擇每個p元素是其父級的最後一個子級。3
:root:root選擇文件的根元素3
:emptyp:empty選擇每個沒有任何子級的p元素(包括文字節點)3
:target#news:target選擇當前活動的#news元素(包含該錨名稱的點選的URL)3
:enabledinput:enabled選擇每一個已啟用的輸入元素3
:disabledinput:disabled選擇每一個禁用的輸入元素3
:checkedinput:checked選擇每個選中的輸入元素3
:not(selector):not(p)選擇每個並非p元素的元素3
::selection::selection匹配元素中被使用者選中或處於高亮狀態的部分3
:out-of-range:out-of-range匹配值在指定區間之外的input元素3
:in-range:in-range匹配值在指定區間之內的input元素3
:read-write:read-write用於匹配可讀及可寫的元素3
:read-only:read-only用於匹配設定 "readonly"(只讀) 屬性的元素3
:optional:optional用於匹配可選的輸入元素3
:required:required用於匹配設定了 "required" 屬性的元素3
:valid:valid用於匹配輸入值為合法的元素3
:invalid:invalid用於匹配輸入值為非法的元素3