less中的运算
-任何数字、颜色或者变量都可以参加运算,运算应该被包裹在括号中。
-例如:+-*、
@ 30px; .box { width: (20 + 5) * @width; }
编译成css
.box { width: 750px; }