Less的!important关键字
Posted Web先生的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Less的!important关键字相关的知识,希望对你有一定的参考价值。
Less的!important关键字
在调用 mixin 时,如果在后面追加 !important 关键字,就可以将 mixin 里面的所有属性都标记为 !important。如,以下Less代码:
.mixin() {
color: #900;
background: #F7BE81;
}
h2 {
.mixin() !important;
}
编译后的CSS代码为:
h2 {
color: #900 !important;
background: #F7BE81 !important;
}
以上是关于Less的!important关键字的主要内容,如果未能解决你的问题,请参考以下文章
leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段