选择属于其父元素的首个子元素的每个 <p> 元素,并为其设置样式:
p:first-child { background-color:yellow; }
:nth-child(n) 选择列表中的偶数标签 :nth-child(2n) 选择列表中的奇数标签 :nth-child(2n-1)