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

<h1>这是标题 1</h1>

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