可以将变量转换为百分比吗?以下不起作用我在生成的css中得到计算(1675%)
@hex-width : 67px;
margin: 1px calc(25% * @hex-width);
Run Code Online (Sandbox Code Playgroud)
只需使用十进制表示法:
@hex-width : 67px;
margin: 1px calc(0.25 * @hex-width);
Run Code Online (Sandbox Code Playgroud)