AI智能
改变未来

css3结构类选择器


CSS3结构类:

1、我们把css3里的:nth选择器称之为:css3结构类
2、:first-child :last-child :nth-child(n) :nth-last-child
3、:nth-of-type :nth-last-of-type :first-of-type :last-of-type
4、:only-child :only-of-type :empty

:first-child
1、选择属于其父元素的首个子元素的每个element元素

Last-child
1、属于父元素的最后一个子元素的每个element元素

:nth-child(n)
1、匹配属于其父元素的第N个子元素,不论元素类型
2、关于参数(n)
1.Number – 选择某元素下的第number个element元素 1 2 3 4.。。
2.n(从0开始) 一个简单的表达式 2n 2n+1 2n-1 odd奇数 even偶数

:nth-last-child(n)
1、匹配属于其父元素的第N个子元素,不论元素的类型,从最后一个开始计算

:nth-of-type()
1、匹配属于父元素的特定类型第N个子元素的每个元素

:nth-last-of-type(n)
匹配属于父元素的特定类型第N个子元素的每个元素,从最后一个子元素开始计算
区别:
type 指定元素类型
Child 不限制元素类型

:first-of-type
1、匹配属于父元素的特定类型第N个子元素的首个子元素的每个元素

:last-of-type
1、匹配属于父元素的特定类型第N个子元素的最后一个子元素的每个元素

:only-child
1、匹配父元素的唯一子元素的每个元素

:only-of-type
1、匹配属于父元素的特定类型的唯一子元素的每个元素

Empty
1、匹配没有子元素(包括文本节点)的每个子元素
以上基本就是css3新增的nth类型选择器的核心部分!

否定选择器(:not)
1、选择器匹配非指定元素/选择器的每个元素 – 表示除了这个元素,其他都可以选中
2、父元素:not(子元素/子选择器)

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » css3结构类选择器