了解CSS的选择器优先级和!important权重


本文摘自PHP中文网,作者青灯夜游,侵删。

推荐:css视频教程

CSS中的选择器优先级与!important权重

  • .class选择器要高于标签选择器。
  • #id选择器要高于.class选择器。
  • 标签选择器是优先级最低的选择器。
  • !important的属性它的权重值优先级最高的,大于所有的选择器。

标签选择器和.class选择器

让我们进入标签选择器和.class选择器谁的优先级高实践,实践内容如:将HTML页面中的h2标签设置文本颜色。

代码块

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

<!DOCTYPE html>

<html lang="en">

 

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>优先级</title>

    <style>

        h2{

           color: red; /*红色*/

       }

       .box{

            color: springgreen; /*绿色*/

       }

    </style>

</head>

   

<body>

    <h2 class="box">微笑是最初的信仰</h2>

</body>

</html>

结果图

1.png

.class选择器和id选择器

让我们进入.class选择器和id选择器谁的优先级高实践,实践内容如:将HTML页面中的h2标签设置文本颜色。

代码块

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

<!DOCTYPE html>

<html lang="en">

 

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>优先级</title>

    <style>

       h2{

           color: red; /*红色*/

       }

       .box{

            color: springgreen; /*绿色*/

       }

       #box{

           color:blue; /*蓝色*/

       }

    </style>

</head>

   

<body>

   <h2 class="box" id="box">微笑是最初的信仰</h2>

</body>

</html>

结果图

2.png

!important权重使用

现在我们知道了标签选择器优先级最低,那么笔者将标签选择器添加!important属性呢,谁的优先级更高呢?
!important权重使用格式如下:

1

color: red !important; /*红色*/

注意:属性:值 !important属性值用空格隔开即可。

让我们进入 !important属性使用实践,看看!important属性威力有多大哈。

代码块

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

<!DOCTYPE html>

<html lang="en">

 

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>!important使用</title>

    <style>

       h2{

           color: red !important; /*红色*/

       }

       .box{

            color: springgreen; /*绿色*/

       }

       #box{

           color:blue; /*蓝色*/

       }

    </style>

</head>

   

<body>

   <h2 class="box" id="box">微笑是最初的信仰</h2>

</body>

</html>

结果图

3.png

总结

优先级从低到高如:标签选择器、.class选择器、#id选择器、!important属性

更多编程相关知识,请访问:编程教学!!

以上就是了解CSS的选择器优先级和!important权重的详细内容,更多文章请关注木庄网络博客

相关阅读 >>

css quotes属性怎么用

jsp怎么引入css

html如何让链接不变色

css如何设置边框

css怎么设置宽为100vw

css怎么设置input颜色

css怎么调整字体

css 怎么设置全屏背景图片

css如何设置背景图片的大小

css如何修改html标签的title样式?(代码示例)

更多相关阅读请进入《css》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...