像这样
@ShuttleGrey: #606369;
我需要更多变量的相同输出颜色值[我正在寻找单行解决方案]
@themeOne:, @themeTwo:, @themeThree: @ShuttleGrey;
我知道我的代码是错误的,有人知道要解决这种情况吗?
谢谢
假设您希望在许多地方应用相同的属性,您可以执行以下操作
.aProperty{
color:#606369
}
然后你可以做这样的事情来为其他元素添加相同的属性
.anotherProperty{
background:#000; //just like that
.aProperty;
}
这种方式.anotherProperty
将继承 aProperty
.
这样,您甚至可以添加其他属性并在许多地方使用它们。
.aProperty{
color:#606369
}
然后你可以做这样的事情来为其他元素添加相同的属性
.anotherProperty{
background:#000; //just like that
.aProperty;
}
由于没有答案被接受,我正在尝试我的运气:)