关于css选择器优先级的判断题
2016-06-23来源:易贤网

这篇文章主要介绍了关于css选择器优先级的判断并附结果截图,需要的朋友可以参考下。

代码如下:

<spanstyle=font-size:14px;><html>

<head>

<styletype=text/css>

#redpp{

/*权值=100+1=101*/

color:#f00;/*红色*/

}

#redp.redem{

/*权值=100+10+1=111*/

color:#00f;/*蓝色*/

}

#redppspanem{

/*权值=100+1+1+1=103*/

color:#ff0;/*黄色*/

}

</style>

</head>

<body>

<divid=redp>

<pclass=red>red

<span><em>emred</em></span>

</p>

<p>red</p>

</div>

</body>

</html></span>

推荐信息