Css 优先级问题分析

Css 优先级问题分析,第1张

概述css优先级的四大原则: 原则一: 继承不如指定 如果某样式是继承来的永远不如具体指定的优先级高。 例子1: CODE: <style type="text/css"> <!-- *{font-size:20px} .class3{ font-size: 12px; } --> </style> <span class="class3">我是多大字号?</… CSS优先级的四大原则:

原则一: 继承不如指定

如果某样式是继承来的永远不如具体指定的优先级高。
例子1:
CODE:
<style type="text/CSS">
<!--
*{Font-size:20px}
.class3{ Font-size: 12px; }
-->
</style>
<span class="class3">我是多大字号?</span>

运行结果:.class3{ Font-size: 12px; }

例子2:

CODE:
<style type="text/CSS">
<!--
#ID1 #ID2{Font-size:20px}
.class3{Font-size:12px}
-->
</style>

<div ID="ID1" class="class1">
<p ID="ID2" class="class2"> <span ID="ID3" class="class3">我是多大字号?</span> </p>
</div>

运行结果:.class3{ Font-size: 12px; }

注意:后面的几大原则都是建立在“指定”的基础上的。

原则二: #ID > .class > 标签选择符

例子:
CODE:
<style type="text/CSS">
<!--
#ID3 { Font-size: 25px; }
.class3{ Font-size: 18px; }
span{Font-size:12px}
-->
</style>

<span ID="ID3" class="class3">我是多大字号?</span>

运行结果:#ID3 { Font-size: 25px; }

原则三:越具体越强大。

解释:当对某个元素的CSS选择符样式定义的越具体,层级越明确,该定义的优先级就越高。
CODE:
<style type="text/CSS">
<!--
.class1 .class2 .class3{Font-size: 25px;}
.class2 .class3{Font-size:18px}
.class3 { Font-size: 12px; }
-->
</style>

<div class="class1">
<p class="class2"> <span class="class3">我是多大字号?</span> </p>
</div>

运行结果:.class1 .class2 .class3{Font-size: 25px;}

原则四:标签#ID >#ID ; 标签.class > .class

上面这条原则大家应该也都知道,看例子
CODE:
<style type="text/CSS">
<!--
span#ID3{Font-size:18px}
#ID3{Font-size:12px}
span.class3{Font-size:18px}
.class3{Font-size:12px}
-->
</style>
<span ID="ID3">我是多大字号?</span>
<span class="class3">我是多大字号?</span>

运行结果:span#ID3{Font-size:18px} span.class3{Font-size:18px}

很多人会有这样的疑问,为什么不把这个原则四归入原则一形成:
【 标签#ID > #ID > 标签.class > .class > 标签选择符 > 通配符 】 呢?或者将 “标签.class” 看作多更为具体的 “.class” 从而归入原则二呢?后面我将解答各位的疑惑,这就涉及到CSS的解析规律---------这四大原则间也是有优先级的,是不是有些糊涂了?别急,继续看。

*四大原则的权重

相信很多人都知道上面的四大原则,不要以为知道了这四大原则就能分辨CSS中那条代码是起作用的,不信?那你5秒内能肯定的知道下面这段代码,测试中的文字的字号吗?
CODE:
<style type="text/CSS">
<!--
.class1 p#ID2 .class3{Font-size:25px}
div .class2 span#ID3{Font-size:18px}
#ID1 .class3{Font-size:14px}
.class1 #ID2 .class3{Font-size:12px}
#ID1 #ID2{Font-size:10px}
-->
</style>
<div ID="ID1" class="class1">
<p ID="ID2" class="class2"> <span ID="ID3" class="class3">我是多大字号?</span> </p>
</div>
为了大家方便阅读,我去掉了一些代码。

四大原则的权重就是: 原则一 > 原则二 > 原则三 > 原则四

解释:

首先遵循原则一

有指定开始使用下面的原则,无指定则继承离他最近的定义。

然后开始原则二

1、比较最高优先级的选择符
例子:
CODE:
<style type="text/CSS">
<!--
#ID3{Font-size:18px}
.class1 .class2 .class3{Font-size:12px} /* 描述的再具体也不起作用 --- 原则二 */
.class3{Font-size:18px}
div p span{Font-size:12px}
-->
</style>
<div ID="ID1" class="class1">
<p ID="ID2" class="class2"> <span ID="ID3" class="class3">我是多大字号?</span> </p>
</div>

总结

以上是内存溢出为你收集整理的Css 优先级问题分析全部内容,希望文章能够帮你解决Css 优先级问题分析所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1026439.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存