p span{color:green;}
标签的权值为1,类选择符的权值为10,ID选择符的权值为100
p{color:red;} /*权值为1*/
p{color:red;}
/*权值为1*/
p span{color:green;} /*权值为1+1=2*/
/*权值为1+1=2*/
.warning{color:white;} /*权值为10*/
.warning{color:white;}
/*权值为10*/
p span.warning{color:purple;} /*权值为1+1+10=12*/
p span.warning{color:purple;}
/*权值为1+1+10=12*/
#footer .note p{color:yellow;} /*权值为100+10+1=111*/
#footer .note p{color:yellow;}
/*权值为100+10+1=111*/