CSS3中:nth-child和:nth-of-type的区别深入理解

Posted Jweib

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS3中:nth-child和:nth-of-type的区别深入理解相关的知识,希望对你有一定的参考价值。

 

关于:nth-child和:nth-of-type的区别之前一直没太注意。最近打算深入了解一些CSS3,才发现里面其实暗藏玄机。 

: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> 

上面这个例子,.demo li:nth-child(2)选择的是<li>one</li>节点,而.demo li:nth-of-type(2)则选择的是<li>two</li>节点。
 
原文:http://www.jb51.net/css/142398.html

以上是关于CSS3中:nth-child和:nth-of-type的区别深入理解的主要内容,如果未能解决你的问题,请参考以下文章

CSS3 nth-child()选择前几个元素

CSS3 nth-child的使用,详解css中nth的作用,以及nth-child的兼容写法

CSS3 伪类选择器 :nth-child()

jQuery :odd 和 :nth-child CSS3 不同

CSS3 Nth-child设置动态左侧位置[重复]

CSS3选择器:nth-child和:nth-of-type之间的差异