<!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>
.parent{
color: red;
text-align: center;
line-height: 30px;
font-size: 28px;
}
.p2{
background-color: blue;
}
p{
background-color: cyan !important;
}
</style>
</head>
<body>
<div class="parent">
我是父亲
<div>我是儿子
<div>我是孙子</div>
</div>
<p id="p" class="p2">段落标签</p>
<h1>一级标题</h1>
<a href="#">百度一下</a>
</div>
</body>
</html>