09-less关键字(important)

less关键字(important)

在调用的混合集后面追加 !important 关键字,可以使混合集里面的所有属性都继承.

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
<!-- less -->
.foo (@bg: #f5f5f5, @color: #900) {
background: @bg;
color: @color;
font-size: 16px;
font-weight: 900;
}

.unimportant {
.foo();
}
.important {
.foo() !important;
}
<!-- css -->
.unimportant {
background: #f5f5f5;
color: #990000;
font-size: 16px;
font-weight: 900;
}
.important {
background: #f5f5f5 !important;
color: #990000 !important;
font-size: 16px !important;
font-weight: 900 !important;
}

坚持原创技术分享,您的支持将鼓励我继续创作!