关于:nth-child和:nth-of-type的区别
: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,若不是,则选择失败。
<div>
<ul class="demo">
<p>zero</p>
<li>one</li>
<li>two</li>
</ul>
</div>
上面这个例子,
li:nth-child(2)选择的是<li>one</li>节点,而 li:nth-of-type(2)则选择的是<li>two</li>节点。