<html>
<head>
<style>
#wo{
color: red;
}
p{
color: yellow;
}
</style>
</head>
<body>
<div id="wo">
<p>Hi</p>
</div>
</body>
</html>
这是我的代码。我声明了 id wo 的属性,它在 css(0,1,0,0) 中比 p(0,0,0,1) 具有更高的特异性,那么为什么我的段落显示黄色?
<html>
<head>
<style>
#wo{
color: red;
}
p{
color: yellow;
}
</style>
</head>
<body>
<div id="wo">
<p>Hi</p>
</div>
</body>
</html>
这是我的代码。我声明了 id wo 的属性,它在 css(0,1,0,0) 中比 p(0,0,0,1) 具有更高的特异性,那么为什么我的段落显示黄色?