忘得一干二净,回顾一下
变量(Variables)
这些都是不言自明的:1
2
3
4
5
6
7@width: 10px;
@height: @width + 10px;
#header {
width: @width;
height: @height;
}
混合(Mixins)
mixin是一种将一组属性从一个规则集包含到另一个规则集的方法(“混合”):
1 | .bordered { |
嵌套(Nesting)
Less提供了使用嵌套而不是与级联结合使用嵌套的能力:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36#header {
color: black;
.navigation {
font-size: 12px;
}
.logo {
width: 300px;
}
}
.clearfix {
display: block;
zoom: 1;
&:after {
content: " ";
display: block;
font-size: 0;
height: 0;
clear: both;
visibility: hidden;
}
}
.component {
width: 300px;
@media (min-width: 768px) {
width: 600px;
@media (min-resolution: 192dpi) {
background-image: url(/img/retina2x.png);
}
}
@media (min-width: 1280px) {
width: 800px;
}
}
运算(Operations)
1 |
|
calc() 特例
为了与 CSS 保持兼容,calc() 并不对数学表达式进行计算,但是在嵌套函数中会计算变量和数学公式的值。1
2@var: 50vh/2;
width: calc(50% + (@var - 20px)); // result is calc(50% + (25vh - 20px))
Escaping
1 | @min768: ~"(min-width: 768px)"; |
编译为:
1 | @media (min-width: 768px) { |
函数(Functions)
Less 内置了多种函数用于转换颜色、处理字符串、算术运算等。这些函数在函数手册中有详细介绍。
函数的用法非常简单。下面这个例子将介绍如何利用 percentage 函数将 0.5 转换为 50%,将颜色饱和度增加 5%,以及颜色亮度降低 25% 并且色相值增加 8 等用法:
1 | @base: #f04615; |
color
1 | color("#aaa"); |
image-size
1 | image-size("file.png"); |
image-width
1 | image-width("file.png"); |
image-height
1 | image-height("file.png"); |
if
1 | @some: foo; |
名称空间和访问器(Namespaces and Accessors)
1 | #bundle() { |
使用:
1 | #header a { |
Maps
1 | #colors() { |
作用域(Scope)
1 | @var: red; |
注释(Comments)
1 | /* 一个块注释 |
导入(Importing)
1 | @import "library"; // library.less |