CSS选择器优先级说明_html/css_WEB-ITnose
程序员文章站
2024-02-02 23:57:46
...
原文:https://www.w3.org/TR/CSS2/cascade.html#computed-value
Some examples:
* {} /* a=0 b=0 c=0 d=0 -> specificity = 0,0,0,0 */ li {} /* a=0 b=0 c=0 d=1 -> specificity = 0,0,0,1 */ li:first-line {} /* a=0 b=0 c=0 d=2 -> specificity = 0,0,0,2 */ ul li {} /* a=0 b=0 c=0 d=2 -> specificity = 0,0,0,2 */ ul ol+li {} /* a=0 b=0 c=0 d=3 -> specificity = 0,0,0,3 */ h1 + *[rel=up]{} /* a=0 b=0 c=1 d=1 -> specificity = 0,0,1,1 */ ul ol li.red {} /* a=0 b=0 c=1 d=3 -> specificity = 0,0,1,3 */ li.red.level {} /* a=0 b=0 c=2 d=1 -> specificity = 0,0,2,1 */ #x34y {} /* a=0 b=1 c=0 d=0 -> specificity = 0,1,0,0 */ style="" /* a=1 b=0 c=0 d=0 -> specificity = 1,0,0,0 */
In the above example, the color of the P element would be green. The declaration in the "style" attribute will override the one in the STYLE element because of cascading rule 3, since it has a higher specificity.
上一篇: MYSQL启用日志,和查看日志
下一篇: 把PHP安装为ApacheDSO_PHP
推荐阅读
-
《Web Component 实战》译者序_html/css_WEB-ITnose
-
CSS选择器优先级说明_html/css_WEB-ITnose
-
《写给大家看的CSS书》第三章:字体与文本_html/css_WEB-ITnose
-
HTML 关于表单 Form_html/css_WEB-ITnose
-
html、css容易被忽略的小知识点_html/css_WEB-ITnose
-
将会员注册页面的Email修改成非必填项(ecshop2.7.2版)_html/css_WEB-ITnose
-
【原创】微信公众号与HTML 5混合模式揭秘--JSSDK获取地理位置_html/css_WEB-ITnose
-
火狐不支持backgroundPosition的js插件_html/css_WEB-ITnose
-
CF#248DIV2:A. Kitahara Haruki's Gift_html/css_WEB-ITnose
-
bootstrap样式问题_html/css_WEB-ITnose