首页 > 代码库 > CSS学习笔记(10)--nth-child和nth-of-type

CSS学习笔记(10)--nth-child和nth-of-type

CSS3 :nth-child() 选择器

规定属于其父元素第二个子元素的每个 p 的背景色:

p:nth-child(2)

技术分享

CSS3 :nth-of-type() 选择器

 规定属于其父元素第二个 p 元素的每个 p

p:nth-of-type(2)

 技术分享

 

CSS学习笔记(10)--nth-child和nth-of-type