我目前正在使用LESS变量和~
转义方法来定义某些媒体查询,如下所示:
@threeColumns: ~"only screen and (min-width: 855px)";
但是,我理想的做法是通过计算另一个LESS变量来定义最小宽度值。我知道你可以在转义的LESS中使用变量,如下所示:
@columnWidth: 265px;
@threeColumns: ~"only screen and (min-width: @{columnWidth})";
但是你可以在LESS的转义位中乘以这些变量吗?这项工作是这样的(无效LESS ):
@columnWidth: 265px;
@threeColumns: ~"only screen and (min-width: (@{columnWidth}*2) )";
非常感谢您的任何帮助。