less:避免编译
Posted keep
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了less:避免编译相关的知识,希望对你有一定的参考价值。
.box { width: ~"calc(300px - 30px)"; }
编译成css
.box { width: calc(300px - 30px); }
important提升优先级
.mixin() { color: #900; background: #F7BE81; } h2 { .mixin() !important; }
编译成css
h2 {
color: #900 !important;
background: #F7BE81 !important;
}
以上是关于less:避免编译的主要内容,如果未能解决你的问题,请参考以下文章
leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段