Less的!important关键字

Posted Web先生的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Less的!important关键字相关的知识,希望对你有一定的参考价值。

Less的!important关键字

在调用 mixin 时,如果在后面追加 !important 关键字,就可以将 mixin 里面的所有属性都标记为 !important。如,以下Less代码:

  1. .mixin() {
  2.   color: #900;
  3.   background: #F7BE81;
  4. }
  5. h2 {
  6.   .mixin() !important;
  7. }

编译后的CSS代码为:

  1. h2 {
  2.   color: #900 !important;
  3.   background: #F7BE81 !important;
  4. }

以上是关于Less的!important关键字的主要内容,如果未能解决你的问题,请参考以下文章

less引入关键字条件表达式循环合并属性

less编码规范

Less 编码规范详解

leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段

less06 引入(importing)

LESS 将伪类扩展为 !important