我正在尝试将较少的函数转换为Sass,但它不起作用
LESS:
@iconNb : 35;
@espaces : @iconNb * 2;
@iconSpriteBackgroundSize : @espaces * 100%;
.svg(@index, @y:0){
background-size:@iconSpriteBackgroundSize;
@x : -(@index * 100%);
background-position : @x @y !important;;
}
萨斯:
@mixin svg($index){
$iconNb : 35;
$espaces : $iconNb * 2;
background-size: $espaces * 100%;
$x : -($index * 100%);
background-position : $x 0 !important;
}