:nth-child(css3的伪类选择器)

伪类选择器,表示匹配其下的子元素

:nth-child(n)    表示从第n个子元素,「n」代表的是由0起始的遞增數字

:nth-child(an=b)   「n」代表的是由0起始的遞增數字,「a」與「b」則是你可以自訂的一個數值,且兩者數值可以不同

:nth-child(3n+10)表示从第10个开始,10,13,16,19……:nth-child(3n)则Y=0,可省略,表示从0开始,0,3,6,9……

你可能感兴趣的:(:nth-child(css3的伪类选择器))