Correcting teacher:PHPz
Correction status:qualified
Teacher's comments:
权重:0,0,1
body h1.title {
color: red;
}
权重计算过程:
id:0
class:0
tag:2
权重:0,0,2
因为权重0,0,2>0,0,1 所以h1最终显示的color为red
.title {
color: red;
}
权重计算过程:
id:0
class:1
tag:0
权重:0,1,0
比较:0,1,0>0,0,2
#active {
color: blue;
}
权重计算过程:
id:1
clas:0
tag:0
权重:1,0,0
比较:1,0,0>0,1,0
有没有办法让0,0,1成为最高权重,这时我们就要用到!important