1、div元素选择器:会选中所有的div元素
2、div:nth-child(2):看个数:会选中与div同级的第二个元素
<style>
        
</style>
</head>
<body>
    <div>红色</div>
    <p class='green'>绿色</p>
    <div id='black'>黑色</div>
</body>

    div:nth-of-type(2):看元素:会选中与div同级的第二个div元素
div:nth-of-type(2){
    color:rgb(255, 0, 0);
}
3、. box  => 类选择器
4、# box => id选择器