CSS3中,( )选择器用来选择没有子元素或文本内容为空的所有元素。
A: :last-child
B: :empty
C: :not
D: :nth-child(n)
A: :last-child
B: :empty
C: :not
D: :nth-child(n)
举一反三
- CSS3中,:empty选择器用于选择没有子元素或文本内容为空的所有元素。
- CSS3中,【 】选择器用来选择没有子元素或文本内容为空的所有元素
- CSS3中,如果某个父元素仅有一个子元素,则使用()选择器不能选择这个子元素。 A: :nth-child(1) B: :last-child C: :child D: :only-child
- CSS3中,( )选择器用于为父元素中的第一个子元素设置样式。 A: :last-child B: :first-child C: :not D: :nth-child(3)
- CSS3中,( )选择器用于为父元素中的第3个子元素设置样式。 A: :last-child(3) B: :first-child(3) C: :nth-child(3) D: :nth-last-child(3)