html部分选择器

CSS :first-child 选择器

选择属于其父元素的首个子元素的每个 <p> 元素,并为其设置样式:

p:first-child
{ 
background-color:yellow;
}

nth-child() 选择器

:nth-child(n)

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

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


上一篇:vue+css 写一个时间轴


下一篇:说说伪类和伪元素