:nth-child(n) p:nth-child(1) 选择所有p元素的第一个子元素
:nth-child(odd) 选择所有元素的奇数个元素,与(2n+1)结果一样
:nth-child(even) 选择所有元素的偶数个元素,(2n+0)及(2n)结果一样。
nth-child(3n+1) 选择所有元素的3的倍数+1个元素,如果是一排3个元素,则选择的是每一排第一个。
:nth-last-child(n) p:nth-last-child(1) 选择所有p元素倒数的第一个子元素
:nth-last-of-type(n) p:nth-last-of-type(2) 选择所有p元素倒数的第二个为p的子元素