css新增偽類
css3新增偽類
:first-of-type p:first-of-type 選擇屬於其父元素首 <p> 元素每 <p> 元素
:last-of-type p:last-of-type 選擇屬於其父元素 <p> 元素每 <p> 元素
:only-of-type p:only-of-type 選擇屬於其父元素唯 <p> 元素每 <p> 元素
:only-child p:only-child 選擇屬於其父元素唯元素每 <p> 元素
:nth-child(n) p:nth-child(2) 選擇屬於其父元素
:nth-last-child(n) p:nth-last-child(2) 同元素始計數
:nth-of-type(n) p:nth-of-type(2) 選擇屬於其父元素第二 <p> 元素每 <p> 元素
:nth-last-of-type(n) p:nth-last-of-type(2) 同元素始計數
:last-child p:last-child 選擇屬於其父元素元素每 <p> 元素
:root :root 選擇文檔根元素
:empty p:empty 選擇沒
:target #news:target 選擇前 #news 元素
:enabled input:enabled 選擇每啟用 <input> 元素
:disabled input:disabled 選擇每禁用 <input> 元素
:checked input:checked 選擇每選 <input> 元素
:not(selector) :not(p) 選擇非 <p> 元素每元素
::selection ::selection 選擇
css新增偽類