less-important
Posted wzndkj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了less-important相关的知识,希望对你有一定的参考价值。
!important关键字:会为所有混合带来的样式,添加!important
在css里面加上!important,是所有样式优先级最高的
在less里面什么场景会用important,在调试的时候
.border_03{ border:1px solid pink; } .test_important{ .border_03() !important; } => .test_important { border: 1px solid pink !important; }
一般的时候我们不要用important
以上是关于less-important的主要内容,如果未能解决你的问题,请参考以下文章