层级+组合选择器
.box1 h1,.box1 h2{}
<style>
.box1 h1,.box1 h2{
color: aquamarine;
}
</style>
</head>
<body>
<div class="box1">
<h1>hello world</h1>
<h2>hello</h2>
</div>
<div class="box2">
<h1>hello world</h1>
</div>
</body>
伪类选择器
增加行为
.box1 h2:hover
.box1 h1,.box1 h2:hover{
color: aquamarine;
}
伪元素选择器
增加元素
多用于给多个地方加同样的格式或者其他什么东西
.box2 h1::before{
content: '增加元素';
}