我正在尝试制作一个 LESS mixin,它会给我这个输出:
.resource:nth-child(8n+1) { clear: left; }
到目前为止我有这个:
.wrap-every(@n) {
&:nth-child(@n + "n+1") { // parse error on this line
clear: left;
}
}
.resource {
.wrap-every(8);
}
但它在指示的行上给出了解析错误
ParseError:无法识别的输入
有没有办法做到这一点?