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

less07 important

时间:2017-06-13 12:35:14      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:bsp   ant   nim   imp   import   blog   weight   div   style   

less

.foo (@bg: #f5f5f5, @color: #900) {
  background: @bg;
  color: @color;
  font-size: 16px;
  font-weight: 900;
}

.unimportant {
  .foo();
}
.important {
  .foo() !important;
}

css

.unimportant {
  background: #f5f5f5;
  color: #990000;
  font-size: 16px;
  font-weight: 900;
}
.important {
  background: #f5f5f5 !important;
  color: #990000 !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

 

less07 important

标签:bsp   ant   nim   imp   import   blog   weight   div   style   

原文地址:http://www.cnblogs.com/yaowen/p/7000305.html

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