任何数字、颜色或者变量都可以参与运算。就是Less提供了加、减、乘、除算术运算
注意:
- 乘号(*)和除号(/)的写法
- 运算符中间左右有个空格隔开 1px + 5
- 对于
两个不同的单位的值之间的运算,运算结果的值是第一个值的单位 - 如果两个值之间
只有一个值有单位,则运算结果就取该单位
@baseFont: 50px;
@border: 5px + 5;
div {
width: 200px - 50;
height: (200px + 50px) * 2;
border: @border solid red;
background-color: #666 - #222;
}
img {
width: 82rem / @baseFont;
height: 82rem / @baseFont;
}