# Less预处理语言
# 变量(Variables)
可通过 @ 符定义
包括颜色、像素在内的 attr (@width: 10px;
)
标签名(@my-selector: banner;
引用时@后需加{})
URL(@images: "../img";
引用时@后需加{})
@width: 10px;
@height: @width + 10px;
#header {
width: @width;
height: @height;
}
2
3
4
5
6
7
编译为:
#header {
width: 10px;
height: 20px;
}
2
3
4
# 混合(Mixins)
混合(Mixin)是一种将一组属性从一个规则集包含(或混入)到另一个规则集的方法。
.bordered {
border-top: dotted 1px black;
border-bottom: solid 2px black;
}
2
3
4
#menu a {
color: #111;
.bordered();
}
.post a {
color: red;
.bordered();
}
2
3
4
5
6
7
8
9
.bordered
类所包含的属性就将同时出现在 #menu a
和 .post a
中了。(注意,你也可以使用 #ids
作为 mixin 使用。)
# 嵌套(Nesting)
Less 模仿了 HTML 的组织结构,提供了使用嵌套(nesting)代替层叠或与层叠结合使用的能力。
#header {
color: black;
.navigation {
font-size: 12px;
}
.logo {
width: 300px;
}
}
2
3
4
5
6
7
8
9
你还可以使用此方法将伪选择器(pseudo-selectors)与混合(mixins)一同使用。下面是一个经典的 clearfix (清除浮动)技巧,重写为一个混合(mixin) (&
表示当前选择器的父级):
.clearfix {
display: block;
zoom: 1;
&:after {/*相当于.clearfix:after*/
content: " ";
display: block;
font-size: 0;
height: 0;
clear: both;
visibility: hidden;
}
}
2
3
4
5
6
7
8
9
10
11
12
13
# @规则嵌套和冒泡
@ 规则(例如 @media
或 @supports
)可以与选择器以相同的方式进行嵌套。@ 规则会被放在前面,同一规则集中的其它元素的相对顺序保持不变。这叫做冒泡(bubbling)。
.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;
}
}
2
3
4
5
6
7
8
9
10
11
12
编译为:
.component {
width: 300px;
}
@media (min-width: 768px) {
.component {
width: 600px;
}
}
@media (min-width: 768px) and (min-resolution: 192dpi) {
.component {
background-image: url(/img/retina2x.png);
}
}
@media (min-width: 1280px) {
.component {
width: 800px;
}
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 运算(Operations)
算术运算符 +
、-
、*
、/
可以对任何数字、颜色或变量进行运算。如果可能的话,算术运算符在加、减或比较之前会进行单位换算。计算的结果以最左侧操作数的单位类型为准。如果单位换算无效或失去意义,则忽略单位。无效的单位换算例如:px 到 cm 或 rad 到 % 的转换。
// 所有操作数被转换成相同的单位
@conversion-1: 5cm + 10mm; // 结果是 6cm
@conversion-2: 2 - 3cm - 5mm; // 结果是 -1.5cm
// conversion is impossible
@incompatible-units: 2 + 5px - 3cm; // 结果是 4px
// example with variables
@base: 5%;
@filler: @base * 2; // 结果是 10%
@other: @base + @filler; // 结果是 15%
2
3
4
5
6
7
8
9
10
11
# 函数(Functions)
Less 内置了多种函数用于转换颜色、处理字符串、算术运算等。
函数的用法非常简单。下面这个例子将介绍如何利用 percentage 函数将 0.5 转换为 50%,将颜色饱和度增加 5%,以及颜色亮度降低 25% 并且色相值增加 8 等用法:
@base: #f04615;
@width: 0.5;
.class {
width: percentage(@width); // returns `50%`
color: saturate(@base, 5%);
background-color: spin(lighten(@base, 25%), 8);
}
2
3
4
5
6
7
8
比较常用的函数如:each,range等。更多参考官网,Less内置函数 (opens new window)
@selectors: left, right, top, bottom;
each(@selectors,{
.border-@{value}{
border-@{value}:1px solid rgba(0, 0, 0, 0.08);
}
})
each(range(32), {
.ml-@{value} {
margin-left: (@value * 1px);
}
.mr-@{value} {
margin-right: (@value * 1px);
}
.mt-@{value} {
margin-top: (@value * 1px);
}
.mb-@{value} {
margin-bottom: (@value * 1px);
}
})
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 命名空间和访问符
假设希望将一些混合(mixins)和变量置于 #bundle
之下,为了以后方便重用或分发:
#bundle() {
.button {
display: block;
border: 1px solid black;
background-color: grey;
&:hover {
background-color: white;
}
}
.tab { ... }
.citation { ... }
}
2
3
4
5
6
7
8
9
10
11
12
现在,如果我们希望把 .button
类混合到 #header a
中,我们可以这样做:
#header a {
color: orange;
#bundle.button(); // 还可以书写为 #bundle > .button 形式
}
2
3
4
# 映射(Maps)
可以将混合(mixins)和规则集(rulesets)作为一组值的映射(map)使用。
#colors() {//添加()后,该样式将不会出现在输出的css中
primary: blue;
secondary: green;
}
.button {
color: #colors[primary];
border: 1px solid #colors[secondary];
}
2
3
4
5
6
7
8
9
输出符合预期:
.button {
color: blue;
border: 1px solid green;
}
2
3
4
# 作用域(Scope)
Less 中的作用域与 CSS 中的作用域非常类似。首先在本地查找变量和混合(mixins),如果找不到,则从“父”级作用域继承。
@var: red;
#page {
#header {
color: @var; // white
}
@var: white;//与在#header之前定义效果相同
}
2
3
4
5
6
7
8
# 导入(Importing)
可以导入一个 .less
文件,此文件中的所有变量就可以全部使用了。如果导入的文件是 .less
扩展名,则可以将扩展名省略掉:
@import "library"; // library.less
@import "typo.css";
2
# 封装示例
示例
:root {
// 主色
--primary-color: #3485f8;
// 警告色
--warning-color: #fba90f;
// 错误色
--error-color: #c50909;
// 成功色
--success-color: #09c529;
// 正文颜色
--text-color-regular: rgba(0, 0, 0, 0.85);
// 副文颜色
--text-color-secondary: rgba(0, 0, 0, 0.5);
// 占位颜色
--text-color-placeholder: #c8c9cc;
//遮罩层颜色
--overlay-color: rgba(0, 0, 0, 0.4);
// 链接颜色
--text-color-link: #3485f8;
// 浅灰背景色
--bc-color: #f8f8f8;
// 浅灰透明色
--bc-lucency-color: #f8f8f8cc;
// 主色对比色
--bc-primary-dark: #f2f8ff;
// 灰色边框色
--border-color: rgba(0, 0, 0, 0.08);
}
.text-white {
color: #fff;
}
.text-black {
color: #000;
}
.text-regular {
color: var(--text-color-regular);
}
.text-secondary {
color: var(--text-color-secondary);
}
.text-link {
color: var(--text-color-link);
}
.text-placeholder {
color: var(--text-color-placeholder);
}
.text-primary {
color: var(--primary-color);
}
.bc-white {
background: #fff;
}
.bc-primary {
background: var(--primary-color);
}
.bc-primary-dark {
background: var(--bc-primary-dark);
}
.bc-warning {
background: var(--warning-color);
}
.bc-error {
background: var(--error-color);
}
.bc-success {
background: var(--success-color);
}
.bc-grey {
background: var(--bc-color);
}
.bc-overlay {
background: var(--overlay-color);
}
@directionMap: {
l: left;
r: right;
t: top;
b: bottom;
};
.last-border-none {
&:last-child {
border: none;
}
}
each(@directionMap, {
.border-@{key} {
border-@{value}:2px solid var(--border-color);
}
.m@{key}-auto {
margin-@{value}:auto;
}
});
@directionMap: {
l: left;
r: right;
t: top;
b: bottom;
};
.last-border-none {
&:last-child {
border: none;
}
}
each(@directionMap, {
.m@{key}-auto {
margin-@{value}:auto;
}
});
.each(@n, @value: 0) when (@value =< @n) {
.w-@{value} {
width: (@value * 1px);
}
.w-2-@{value} {
width: (@value * 2px);
}
.h-@{value} {
height: (@value * 1px);
}
.h-2-@{value} {
height: (@value * 2px);
}
.ml-@{value} {
margin-left: (@value * 1px);
}
.ml--@{value} {
margin-left: -(@value * 1px);
}
.mr-@{value} {
margin-right: (@value * 1px);
}
.mr--@{value} {
margin-right: -(@value * 1px);
}
.mx-@{value} {
margin-left: (@value * 1px);
margin-right: (@value * 1px);
}
.mt--@{value} {
margin-top: -(@value * 1px);
}
.mt-@{value} {
margin-top: (@value * 1px);
}
.mb-@{value} {
margin-bottom: (@value * 1px);
}
.mb--@{value} {
margin-bottom: -(@value * 1px);
}
.my-@{value} {
margin-top: (@value * 1px);
margin-bottom: (@value * 1px);
}
.pl-@{value} {
padding-left: (@value * 1px);
}
.pr-@{value} {
padding-right: (@value * 1px);
}
.px-@{value} {
padding-left: (@value * 1px);
padding-right: (@value * 1px);
}
.pt-@{value} {
padding-top: (@value * 1px);
}
.pb-@{value} {
padding-bottom: (@value * 1px);
}
.py-@{value} {
padding-top: (@value * 1px);
padding-bottom: (@value * 1px);
}
.fs-@{value} {
font-size: (@value * 1px);
}
.lh-@{value} {
line-height: (@value * 1px);
}
.rounded-@{value} {
border-radius: (@value * 1px);
}
.rounded-t-@{value} {
border-top-left-radius: (@value * 1px);
border-top-right-radius: (@value * 1px);
}
.rounded-r-@{value} {
border-top-right-radius: (@value * 1px);
border-bottom-right-radius: (@value * 1px);
}
.rounded-b-@{value} {
border-bottom-right-radius: (@value * 1px);
border-bottom-left-radius: (@value * 1px);
}
.rounded-l-@{value} {
border-top-left-radius: (@value * 1px);
border-bottom-left-radius: (@value * 1px);
}
.top-@{value} {
top: (@value * 1px);
}
.top--@{value} {
top: (@value * -1px);
}
.right-@{value} {
right: (@value * 1px);
}
.left-@{value} {
left: (@value * 1px);
}
.bottom-@{value} {
bottom: (@value * 1px);
}
.gap-@{value} {
gap: (@value * 1px);
}
.flex-@{value} {
flex: (@value * 1);
}
.shrink-@{value} {
flex-shrink: (@value * 1);
}
.grow-@{value} {
flex-grow: (@value * 1);
}
.each(@n, (@value + 1));
}
.each(200);
each(range(7), {
.fw-@{value} {
font-weight:(@value * 100);
}
});
.box-border {
box-sizing: border-box;
}
.box-content {
box-sizing: content-box;
}
.block {
display: block;
}
.w-screen {
width: 100vw;
}
.w-full {
width: 100%;
}
.h-full {
height: 100%;
}
.h-screen {
height: 100vh;
}
.h-min-screen {
min-height: 100vh;
}
.h-lvh {
height: 100lvh;
}
.h-min-lvh {
min-height: 100lvh;
}
.h-dvh {
height: 100dvh;
}
.h-min-dvh {
min-height: 100dvh;
}
.h-auto {
height: auto;
}
.flex-row {
display: flex;
flex-direction: row;
}
.flex-col {
display: flex;
flex-direction: column;
}
.justify-between {
justify-content: space-between;
}
.justify-center {
justify-content: center;
}
.items-start {
align-items: flex-start;
}
.items-center {
align-items: center;
}
.items-stretch {
align-items: stretch;
}
.flex-wrap {
flex-wrap: wrap;
}
.flex-nowrap {
flex-wrap: nowrap;
}
.fixed {
position: fixed;
}
.relative {
position: relative;
}
.absolute {
position: absolute;
}
.overflow-auto {
overflow: auto;
}
.overflow-x-auto {
overflow-x: auto;
}
.overflow-hidden {
overflow: hidden;
}
.overflow-y-auto {
overflow-y: auto;
}
.whitespace-normal {
white-space: normal;
}
.whitespace-nowrap {
white-space: nowrap;
}
.whitespace-break-spaces {
white-space: break-spaces;
}
.break-normal {
overflow-wrap: normal;
word-break: normal;
}
.break-words {
overflow-wrap: break-word;
}
.break-all {
word-break: break-all;
}
.text-center {
text-align: center;
}
.cursor-pointer {
cursor: pointer;
}
.text-start {
text-align: start;
}
.text-end {
text-align: end;
}
.one-line-ellipsis {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
each(range(7), {
.fw-@{value} {
font-weight:(@value * 100);
}
});
.box-border {
box-sizing: border-box;
}
.box-content {
box-sizing: content-box;
}
.w-screen {
width: 100vw;
}
.w-full {
width: 100%;
}
.h-full {
height: 100%;
}
.h-screen {
height: 100vh;
}
.h-min-screen {
min-height: 100vh;
}
.h-lvh {
height: 100lvh;
}
.h-min-lvh {
min-height: 100lvh;
}
.h-dvh {
height: 100dvh;
}
.h-min-dvh {
min-height: 100dvh;
}
.h-auto {
height: auto;
}
.flex-row {
display: flex;
flex-direction: row;
}
.flex-col {
display: flex;
flex-direction: column;
}
.justify-between {
justify-content: space-between;
}
.justify-center {
justify-content: center;
}
.items-start {
align-items: flex-start;
}
.items-center {
align-items: center;
}
.items-stretch {
align-items: stretch;
}
.flex-wrap {
flex-wrap: wrap;
}
.flex-nowrap {
flex-wrap: nowrap;
}
.fixed {
position: fixed;
}
.relative {
position: relative;
}
.absolute {
position: absolute;
}
.overflow-auto {
overflow: auto;
}
.overflow-x-auto {
overflow-x: auto;
}
.overflow-hidden {
overflow: hidden;
}
.overflow-y-auto {
overflow-y: auto;
}
.whitespace-normal {
white-space: normal;
}
.whitespace-nowrap {
white-space: nowrap;
}
.whitespace-break-spaces {
white-space: break-spaces;
}
.break-normal {
overflow-wrap: normal;
word-break: normal;
}
.break-words {
overflow-wrap: break-word;
}
.break-all {
word-break: break-all;
}
.text-center {
text-align: center;
}
.text-start {
text-align: start;
}
.text-end {
text-align: end;
}
.one-line-ellipsis {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626