less运算

less里面是可以有运算的,任何数字,颜色或者变量都可以参与与暗算,运算应该被包裹在括号中。
 
@test_width:300px;
.box_width{
  width: (@test_width + 20) * 2;//这里面不用每个都带单位,只要有一个带单位就可以了
  color: #cccccc + 10; //颜色的运算,用的不多
}
=>
.box_width {
  width: 640px;
  color: #d6d6d6;
}

 

posted @ 2018-07-15 18:28  wzndkj  阅读(169)  评论(0编辑  收藏  举报