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




posted @ 2018-07-16 06:57  wzndkj  阅读(765)  评论(0编辑  收藏  举报