:nth-child和:nth-of-type的区别

:nth-of-type为什么要叫:nth-of-type?因为它是以"type"来区分的。也就是说:ele:nth-of-type(n)是指父元素下第n个ele元素, 

而ele:nth-child(n)是指父元素下第n个元素且这个元素为ele,若不是,则选择失败。 

这里附上一个小例子: 

 
     

    zero

     

  • one
  •  

  • two
  •  

 

 

上面这个例子,.demo li:nth-child(2)选择的是

  • one
  • 节点,

    而.demo li:nth-of-type(2)则选择的是

  • two
  • 节点。

    你可能感兴趣的:(css)