:root 选择文档的根元素,等同于 html 元素
:empty 选择没有子元素的元素
:target 选取当前活动的目标元素
:not(selector) 选择除 selector 元素意外的元素
:enabled 选择可用的表单元素
:disabled 选择禁用的表单元素
:checked 选择被选中的表单元素
:after 在元素内部最前添加内容
:before 在元素内部最后添加内容
:nth-child(n) 匹配父元素下指定子元素,在所有子元素中排序第n
:nth-last-child(n) 匹配父元素下指定子元素,在所有子元素中排序第n,从后向前数
:nth-child(odd)
:nth-child(even)
:nth-child(3n+1)
:first-child
:last-child
:only-child
:nth-of-type(n) 匹配父元素下指定子元素,在同类子元素中排序第n
:nth-last-of-type(n) 匹配父元素下指定子元素,在同类子元素中排序第n,从后向前数
:nth-of-type(odd)
:nth-of-type(even)
:nth-of-type(3n+1)
:first-of-type
:last-of-type
:only-of-type
::selection 选择被用户选取的元素部分
:first-line 选择元素中的第一行
:first-letter 选择元素中的第一个字符
相关文章
- css3结构伪类选择器first-child,last-child,nth-child(),nth-last-child(),only-child
- css3伪类选择器nth-of-type,:nth-last-of-type,:first-of-type,:last-of-type,:only-of-type
- CSS选择符、属性继承、优先级算法以及CSS3新增伪类、新特性
- CSS3每日一练之选择器-结构性伪类选择器
- CSS3属性之 target伪类实现Tab切换效果
- CSS3 :target伪类实现Tab切换效果
- 实用CSS3属性之 :target伪类实现Tab切换效果
- CSS3 :target伪类实现Tab切换效果
- CSS3 选择器——伪类选择器
- 利用:before和:after伪类制作CSS3 圆形按钮 含demo