代码示例:(标识:css_specificity_3)
<!DOCTYPE html>
<html>
<head>
<style>
.intro {background-color: yellow;}
h1 {background-color: red;}
</style>
</head>
<body>

<h1 class="intro">这是一个标题</h1>

</body>
</html>
运行结果: