内部样式表的优先级为1000,id选择器优先级为100,class选择器为10,标签为1。
例如:
情形一:div.test1 .span a 优先级 1+10 +10 +1情形三:#xxx li 优先级 100 +1
直接上代码:
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> div .aa{color:orange;}/*优先级11*/ .bn .aa{color:red;}/*优先级20*/ #bb .aa{color:yellow;}/*优先级110*/ #bb a{color:blue;}/*优先级101*/ .bn{color:green;}/*不起作用,设置字体的颜色需要精确到包裹字体的那个标签*/ </style> </head> <body> <div id="bb" class="bn"> <a style="color:gray;" href="#" class="aa">link</a> <!-- 内部样式表优先级最高为1000 --> <div> </body> </html>代码执行后,link字体的颜色为gray,因为内部样式表的优先级最高。
原文地址:http://blog.csdn.net/westernranger/article/details/40007153