## less运算
运算提供了加,减,乘,除操作;我们可以做属性值和颜色的运算,这样就可以实现属性值之间的复杂关系。LESS中的函数一一映射了JavaScript代码,如果你愿意的话可以操作属性值。1
2
3
4
5
6
7
8
9
10
11
12
13
14<!-- less -->
.wp{
margin: 0 auto;
background: forestgreen;
width: 450px + 450;
height: 400 + 400px;
}
<!-- css -->
.wp {
margin: 0 auto;
background: forestgreen;
width: 900px;
height: 800px;
}
1 | <!-- less --> |
1 | <!-- less --> |
less函数
less提供了许多用于转换颜色,处理字符串和进行算术运算的函数,这些函数使用起来非常简单.
常见的rgb()函数,将rgb模式的值转换为16进制的值.1
2
3
4
5
6
7
8
9
10<!-- less -->
.wp {
background: #ff0000;
z-index: rgb(0,133,0);
}
<!-- css -->
.wp {
background: #ff0000;
z-index: #008500;
}