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




猜你喜欢

转载自www.cnblogs.com/wzndkj/p/9315843.html
今日推荐