CSS选择器 及 选择器优先级判断

CSS选择器

常用选择器

选择器 示例 描述
通配符 * 选择所有元素。
.class 选择 class=“class” 的元素。
id #id 选择 id=“id” 的元素。
元素 p 选择 <p> 元素。
分组 p,span 选择 <span> 元素和 <p> 元素。
后代 div p 选择 <div> 元素内的<p> 元素。
子元素 div>p 选择 <div> 的第一子代的 <p> 元素。
相邻兄弟 div+p 选择与<div>同级且紧接在其后的第一个 <p> 元素

属性选择器

类型 示例 描述
[attribute] [title] 选择带有 title 属性所有元素
[attribute=value] [title=word] 选择 title=“word” 的所有元素
[attribute*=”value”] [title*=”word”] 选择 title 属性值包含子串 “word” 的所有元素
[attribute~=value] [title~=word] 选择 title 属性值包含单词 “word” 的所有元素
[attribute¦=value] [title¦=st] 选择 title 属性值以 “st” 开头的所有元素。
[attribute^=”value”] [title^=”st”] 选择 title 属性值以 “st” 开头的所有元素
[attribute$=”value”] [title$=”end”] 选择 title 属性值以 “end” 结尾的所有元素

伪类/伪元素

选择器 示例 示例说明
:checked input:checked 选择所有选中的表单元素
:disabled input:disabled 选择所有禁用的表单元素
:empty p:empty 选择所有没有子元素的p元素
:enabled input:enabled 选择所有启用的表单元素
:first-of-type p:first-of-type 选择的每个 p 元素是其父元素的第一个 p 元素
:in-range input:in-range 选择元素指定范围内的值
:invalid input:invalid 选择所有无效的元素
:last-child p:last-child 选择所有p元素的最后一个子元素
:last-of-type p:last-of-type 选择每个p元素是其母元素的最后一个p元素
:not(selector) :not§ 选择所有p以外的元素
:nth-child(n) p:nth-child(2) 选择所有 p 元素的父元素的第二个子元素
:nth-last-child(n) p:nth-last-child(2) 选择所有p元素倒数的第二个子元素
:nth-last-of-type(n) p:nth-last-of-type(2) 选择所有p元素倒数的第二个为p的子元素
:nth-of-type(n) p:nth-of-type(2) 选择所有p元素第二个为p的子元素
:only-of-type p:only-of-type 选择所有仅有一个子元素为p的元素
:only-child p:only-child 选择所有仅有一个子元素的p元素
:optional input:optional 选择没有"required"的元素属性
:out-of-range input:out-of-range 选择指定范围以外的值的元素属性
:read-only input:read-only 选择只读属性的元素属性
:read-write input:read-write 选择没有只读属性的元素属性
:required input:required 选择有"required"属性指定的元素属性
:root root 选择文档的根元素
:target #news:target 选择当前活动#news元素(点击URL包含锚的名字)
:valid input:valid 选择所有有效值的属性
:link a:link 选择所有未访问链接
:visited a:visited 选择所有访问过的链接
:active a:active 选择正在活动链接
:hover a:hover 把鼠标放在链接上的状态
:focus input:focus 选择元素输入后具有焦点
:first-letter p:first-letter 选择每个 <p> 元素的第一个字母
:first-line p:first-line 选择每个 <p> 元素的第一行
:first-child p:first-child 选择器匹配属于任意元素的第一个子元素的元素
:before p:before 在每个 <p> 元素之前插入内容
:after p:after 在每个 <p> 元素之后插入内容
:lang(language) p:lang(it) <p> 元素的lang属性选择一个开始值

选择器优先级

不同级

!important > 行内样式 > ID选择器 > 类选择器 > 元素 > 通配符 > 继承 > 浏览器默认

同级

  1. 同一级别中后写的会覆盖先写的样式
  2. 同一级别css引入方式不同,优先级不同

内联(行内)样式 > 内部样式表 > 外部样式表 > 导入样式(@import)。

选择器权重计算

选择器权重计算可以用来辅助选择器优先级判断。

权重计算规则

  1. 内联样式,(style=””),权值为1000。
  2. ID选择器(#content),权值为0100。
  3. 类选择器(.class),属性选择器( [type=""] ),伪类选择器(:hover);权值为0010。
  4. 标签选择器(p)和伪元素选择器(::before)权值为0001。
  5. 通配选择符(*)关系选择符(+, >, ~, ’ ', ||),权值为0000。
  6. 继承样式没有权值。

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style> a{
    color: #ff54c5;} /*权重:0,0,0,1*/ div a{
    color: green;} /*权重:0,0,0,2*/ .demo a{
    color: black;} /*权重:0,0,1,1*/ .demo input[type="text"]{
    color: blue;} /*权重:0,0,2,1*/ .demo *[type="text"]{
    color: grey;} /*权重:0,0,2,0*/ #demo a{
    color: orange;} /*权重:0,1,0,1*/ div#demo a{
    color: red;} /*权重:0,1,0,2*/ </style>
</head>
<body>
    <a href="">第一条应该是黄色</a> <!--适用第1行规则-->
    <div class="demo">
        <input type="text" value="第二条应该是蓝色" /><!--适用第4、5行规则,第4行优先级高-->
        <a href="">第三条应该是黑色</a><!--适用第2、3行规则,第3行优先级高-->
    </div>
    <div id="demo">
        <a href="">第四条应该是红色</a><!--适用第6、7行规则,第7行优先级高-->
    </div>
</body>
</html>
全部评论

相关推荐

一名愚蠢的人类:多少games小鬼留下了羡慕的泪水
投递荣耀等公司10个岗位
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
11-29 12:19
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务