CSS3 nth-child()选择前几个元素

一、选择列表中的偶数标签  :nth-child(2n)

CSS3 nth-child()选择前几个元素

二、选择列表中的奇数标签  :nth-child(2n-1)

CSS3 nth-child()选择前几个元素

三、选择从第6个开始的,直到最后:nth-child(n+6)

CSS3 nth-child()选择前几个元素

四、选择第1个到第6个 :nth-child(-n+6)

CSS3 nth-child()选择前几个元素

一、两者结合使用,可以限制选择某一个范围,选择第6个到第9个  :nth-child(n+6):nth-child(-n+9)

CSS3 nth-child()选择前几个元素

相关推荐