我想继承父级并在中间添加几个类。像
.parent {
li {
a {
color: red;
}
}
}
.child {
li {
a, button {
color: red;
}
}
}
答案 0 :(得分:0)
在LESS中你可以扩展mixins,但是目前(LESS 1.5)它只需要一个类定义,所以这个:
.parent {
li {
a {
color: red;
}
}
}
.child {
&:extend(.parent);
li {
a, button {
color: red;
}
}
}