less:运算

less中的运算

      -任何数字、颜色或者变量都可以参加运算,运算应该被包裹在括号中。

      -例如:+-*、

@width: 30px;
.box {
  width: (20 + 5) * @width;
}

编译成css

.box {
  width: 750px;
}

 

posted @ 2018-06-05 21:05  珊迪·奇克斯  阅读(116)  评论(0编辑  收藏  举报