LESS !important keyword

2018-01-10 09:36 更新

描述

!important 關(guān)鍵字用于覆蓋特定屬性。 當(dāng)它在mixin調(diào)用之后放置時,它會將所有繼承的屬性標(biāo)記為!important 。


以下示例演示如何在LESS文件中使用!important關(guān)鍵字

<html>
<head>
  <link rel="stylesheet" href="style.css" type="text/css" />
  <title>The !important keyword</title>
</head>
<body>
<h1>Welcome to Tutorialspoint</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>

接下來,創(chuàng)建文件 style.less 。


style.less

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


您可以使用以下命令將 style.less 編譯為 style.css :

lessc style.less style.css


接下來執(zhí)行上面的命令,它將用下面的代碼自動創(chuàng)建 style.css 文件:

style.css

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


輸出

讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:

  • 將以上html代碼保存在 less_mixin_important.html 文件中。

  • 在瀏覽器中打開此HTML文件,將顯示如下輸出。

輸出

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號