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) 选择属于其父元素第二元素 <p> 元素
: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 选择没元素 <p> 元素(包括文本节点)
:target #news:target 选择 #news 元素
:enabled input:enabled 选择每启用 <input> 元素
:disabled input:disabled 选择每禁用 <input> 元素
:checked input:checked 选择每 <input> 元素
:not(selector) :not(p) 选择非 <p> 元素元素
::selection ::selection 选择用户选取元素部

posted @ 2018-03-05 19:46  ~丸子  阅读(159)  评论(0编辑  收藏  举报