一、:nth-of-type(1)的代码如下:
<!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>body div:nth-of-type(1)</title>
</head>
<style>
div{
width: 100px;
height: 100px;
}
body div:nth-of-type(1){
background-color: red;
}
body div:nth-of-type(2){
background-color: blue;
}
</style>
<body>
<p>23</p>
<div></div>
<div></div>
</body>
</html>
二、效果图如下:

三、:nth-child(1)代码如下(体会)
<!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>Document</title>
</head>
<style>
div {
width: 150px;
height: 150px;
border: 1px solid blue ;
}
body div:nth-child(1){
background-color: green;
}
body div:nth-child(2){
background-color: orange;
}
body div:nth-child(3){
background-color: black;
}
</style>
<body>
<p>大家好,我叫温婉婉</p>
<div>我叫帆帆</div>
<div>我叫小敏</div>
</body>
</html>
四、效果图如下:
