<!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>
<style>
div{
color: orange;
font-size: 24px;
}
#two{
background-color: pink;
}
.three{
background-color: blueviolet;
}
</style>
</head>
<body>
<div>
我是父元素
<div>
我是子元素
<div>我是孙子元素</div>
</div>
</div>
<p id="two">段落标签</p>
<p class="three">段落标签</p>
<p class="four three">段落标签</p>
</body>
</html>