我需要equation
没有combine
多个范围,例如使用native:
.test
{
color: black;
}
.demo
{
color: black;
}
.test,
.demo
{
color: black;
}
@.test: .demo; // Something like that equation, all test classes equal demo class
.demo
{
color: black;
}
如果不能使用CSS
,作为最后的手段,我可以使用LESS
答案 0 :(得分:2)
在LESS中,您可以使用extend
功能来实现此目的。
.demo
{
color: black;
}
.test:extend(.demo){}; /* extends the properties of the .demo */
/* .test:extend(.demo all){}; /* the all keyword would extend nested sub classes of .demo also */
答案 1 :(得分:1)