CSS3新增nth-of-type选择器及与nth-child区别
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS3新增nth-of-type选择器</title>
<style>
/* 用法和nth-child 一样 */
/* 选择第一个孩子 */
ul li:first-of-type {
background-color: tomato;
}
/* 选择最后一个孩子 */
/*
ul li:last-of-type {
background-color: tomato;
} */
/* 括号里的even可以改成odd 奇数,或者数字,公式 */
ul li:nth-of-type(even) {
background-color: skyblue;
}
/* 两者区别 */
/* :nth-child会把所有盒子都排列序号 */
/* 在执行的时候首先看:nth-child(1) 也就是光头强 之后回去看前面div 因为匹配不上,所以无法执行这一步 */
section div:nth-child(1) {
background-color: red;
}
/* :nth-of-type会把指定元素的盒子排列序号 */
/* 在执行的时候首先看div这个指定的元素,然后再看是第几个孩子 也就是熊大 */
section div:nth-of-type(1) {
background-color: blue;
}
</style>
</head>
<ul>
<li>我是第1个孩子</li>
<li>我是第2个孩子</li>
<li>我是第3个孩子</li>
<li>我是第4个孩子</li>
<li>我是第5个孩子</li>
<li>我是第6个孩子</li>
<li>我是第7个孩子</li>
<li>我是第8个孩子</li>
</ul>
<!-- 区别 -->
<section>
<p>光头强</p>
<div>熊大</div>
<div>熊二</div>
</section>
<body>
</body>
</html>
效果展示