首頁  >  文章  >  web前端  >  了解CSS的選擇器優先權和!important權重

了解CSS的選擇器優先權和!important權重

青灯夜游
青灯夜游轉載
2020-12-31 17:23:384257瀏覽

了解CSS的選擇器優先權和!important權重

推薦:css影片教學

CSS中的選擇器優先權與!important權重

  • .class選擇器要高於標籤選擇器。
  • #id選擇器要高於.class選擇器。
  • 標籤選擇器是優先權最低的選擇器。
  • !important的屬性它的權重值優先權最高的,大於所有的選擇器。

標籤選擇器和.class選擇器

讓我們進入標籤選擇器和.class選擇器誰的優先權高實踐,實踐內容如:將HTML頁面中的h2標籤設定文字顏色。

程式碼區塊

<!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>

結果圖

了解CSS的選擇器優先權和!important權重

#.class選擇器和id選擇器

讓我們進入.class選擇器和id選擇器誰的優先權高實踐,實踐內容如:將HTML頁面中的h2標籤設置文字顏色。

程式碼區塊

<!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>

結果圖

了解CSS的選擇器優先權和!important權重

#!important權重使用

現在我們知道了標籤選擇器優先級最低,那麼筆者將標籤選擇器加上!important屬性呢,誰的優先權更高呢?
!important權重使用格式如下:

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

注意:屬性:值 !important屬性值用空格隔開即可。

讓我們進入 !important屬性使用實踐,看看!important屬性威力有多大哈。

程式碼區塊

<!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>

結果圖

了解CSS的選擇器優先權和!important權重

#總結

#優先權從低到高如:標籤選擇器、.class選擇器、#id選擇器、!important屬性

更多程式設計相關知識,請造訪:程式教學! !

以上是了解CSS的選擇器優先權和!important權重的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:cnblogs.com。如有侵權,請聯絡admin@php.cn刪除