展开
拓展 关闭
订阅号推广码
GitHub
视频
公告栏 关闭

CSS的层叠与选择器优先级

  • CSS全称:层叠样式表(Cascading Style Sheets)

  • 层叠是⼀个基本特征

⼀个css属性被多次声明的时候,会根据优先级或者声明顺序来计算采⽤哪个样式
  • 优先级是怎么计算
通配符选择器 1: *
标签选择器 2:div/span/p/li
类选择器 3:class
id选择器 6:id
⾏内样式 5
!important 6(尽量不要在公⽤代码⾥使⽤)
  • 代码案例
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    /* .box {
      color: red;
    }

    .box {
      color: blue;
    } */
    * {
      color: red;
    }

    div {
      color: blue!important;
    }
    .box{
      color: green;
    }
    #idbox{
      color: yellow;
    }
  </style>
</head>

<body>
  <div class="box" id='idbox' style="color:pink">小滴课堂有很多的it课程</div>
</body>

</html>
posted @ 2022-08-31 07:12  DogLeftover  阅读(17)  评论(0编辑  收藏  举报