如果有变量名,如何打印类

时间:2015-07-22 16:06:11

标签: css css3 less

我有一个变量:

@test: this_is_var;

我上课了

.my-@{test}-class{}

如何在其他课程中打印此课程?

此代码错误:

.test-class{
    .my-@{test}-class();
}

但是这段代码工作正常

.test-class{
    .my-this_is_var-class();
}

为什么呢?以及如何打印此课程:.my-@{test}-class()

1 个答案:

答案 0 :(得分:0)

您的错误变体在codepen中运行良好。 也许你必须在你的变量中写~{}Here is一个例子。