我知道我可以将 a 添加class="span3"
到 a div
,但是如果我想通过 LESS 将等效属性赋予另一个类怎么办?
例子:
<div class="span3">This width is span3</div>
<div class="anotherClass">I want to make this also span3, but without explicitly calling it out</div>
在 LESS 中,我想做类似的事情:
.anotherClass {
.span3();
}
我怎样才能做到这一点?