码迷,mamicode.com
首页 > 其他好文 > 详细

less:避免编译

时间:2018-06-06 00:51:34      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:ant   style   提升   round   IV   imp   important   编译   mixin   

.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:避免编译

标签:ant   style   提升   round   IV   imp   important   编译   mixin   

原文地址:https://www.cnblogs.com/qjuly/p/9142492.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!