CSS :first-child 选择器
选择属于其父元素的首个子元素的每个 <p> 元素,并为其设置样式:
p:first-child
{ background-color:yellow; }
nth-child() 选择器
:nth-child(n)
选择列表中的偶数标签
:nth-child(2n)
选择列表中的奇数标签
:nth-child(2n-1)
2024-02-21 23:15:10
选择属于其父元素的首个子元素的每个 <p> 元素,并为其设置样式:
p:first-child
{ background-color:yellow; }
:nth-child(n)
选择列表中的偶数标签
:nth-child(2n)
选择列表中的奇数标签
:nth-child(2n-1)
下一篇:说说伪类和伪元素