06-less命名空间

less命名空间

less命名空间: 将一些需要的混合组合在一起,可以通过嵌套多层id或者class来实现.

完整写法

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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!-- less -->
#bgcolor(){
background: #ffffff;
.a{
color: #888888;
&:hover{
color: #ff6600;
}
.b{
background: #ff0000;
}
}
}
.wi{
background: green;
color: #fff;
.a{
color: green;
background: #ffffff;
}
}
.bgcolor1{
background: #fdfee0;
#bgcolor>.a;
}
.bgcolor2{
.wi>.a;
}
<!-- css -->
.wi {
background: green;
color: #fff;
}
.wi .a {
color: green;
background: #ffffff;
}
.bgcolor1 {
background: #fdfee0;
color: #888888;
}
.bgcolor1:hover {
color: #ff6600;
}
.bgcolor1 .b {
background: #ff0000;
}
.bgcolor2 {
color: green;
background: #ffffff;
}

省略>写法

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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!-- less -->
#bgcolor(){
background: #ffffff;
.a{
color: #888888;
&:hover{
color: #ff6600;
}
.b{
background: #ff0000;
}
}
}
.wi {
background: green;
color: #fff;
.a {
color: green;
background: #ffffff;
}
}
.bgcolor1{
background: #fdfee0;
#bgcolor .a;
}
.bgcolor2{
.wi .a;
}
<!-- css -->
.wi {
background: green;
color: #fff;
}
.wi .a {
color: green;
background: #ffffff;
}
.bgcolor1 {
background: #fdfee0;
color: #888888;
}
.bgcolor1:hover {
color: #ff6600;
}
.bgcolor1 .b {
background: #ff0000;
}
.bgcolor2 {
color: green;
background: #ffffff;
}
坚持原创技术分享,您的支持将鼓励我继续创作!