LESS:用条件定义变量

时间:2016-01-26 11:06:03

标签: css less

我试图在LESS函数中设置一些内部变量

.my-function() {
  @myVar: 5px when (@other > 1);
  @myVar: 4px when (@other = 1);
  height: @myVar;
}

我问,因为LESS文档只指定条件作为mixins函数,没有什么接近我实际"思考"我需要。

0 个答案:

没有答案