Less !important關鍵字


!important 關鍵字是用來覆蓋指定的屬性。當它被放置的 mixin 呼叫後,它標誌著所有繼承屬性為 !important。
下面的例子演示了LESS檔案使用 !important 關鍵字。
<html>
<head>
  <link rel="stylesheet" href="style.css" type="text/css" />
  <title>The !important keyword</title>
</head>
<body>
<h1>Welcome to Yiibai Yiibai</h1>
<p class="para1">LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p>
<p class="para2">LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p>
</body>
</html>
接下來,建立檔案 style.less。

style.less

.mixin(){
  color: #900;
  background: #F7BE81;
}
.para1{
  .mixin();
}
.para2{
  .mixin() !important;
}
你可以編譯 style.less 使用下面的命令來生成 style.css 檔案:
lessc style.less style.css
接著執行上面的命令,它會自動建立 style.css 檔案,下面的程式碼:

style.css

.para1 {
  color: #900;
  background: #F7BE81;
}
.para2 {
  color: #900 !important;
  background: #F7BE81 !important;
}

輸出結果

讓我們來執行以下步驟,看看上面的程式碼工作:
  • 儲存上面的HTML程式碼在 less_mixin_important.html 檔案。
  • 在瀏覽器中開啟該HTML檔案,得到如下輸出顯示。