码迷,mamicode.com
首页 > Web开发 > 详细

关于css优先级

时间:2014-10-12 09:59:07      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:字体   css   color   class   

内部样式表的优先级为1000,id选择器优先级为100,class选择器为10,标签为1。

例如:

情形一:div.test1 .span a 优先级 1+10 +10 +1  
情形二:span#xxx .songs li 优先级1+100 + 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,因为内部样式表的优先级最高。

关于css优先级

标签:字体   css   color   class   

原文地址:http://blog.csdn.net/westernranger/article/details/40007153

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!