标签: css less
我试图在LESS函数中设置一些内部变量
.my-function() { @myVar: 5px when (@other > 1); @myVar: 4px when (@other = 1); height: @myVar; }
我问,因为LESS文档只指定条件作为mixins函数,没有什么接近我实际"思考"我需要。