我得到的地方可以少用,但这样做(不起作用):
<div class="fixed-width(150px)" ></div>
.fixed-width(@customWidth) {
width: @customWidth;
}
...似乎比提供的例子更有意义:
<div class="fixed-width" ></div>
.fixed-width {
.another-step(150px);
}
.another-step(@customWidth) {
width: @customWidth;
}
有没有一种简单的方法可以实现这一目标,我很遗憾?
答案 0 :(得分:3)
没有。 LESS只编译CSS文件,而不是内联CSS。您必须编写一个改进的解析器来生成您已经使用的代码。