我试图找到一种方法来比较变量名,例如@each 循环中的 $topLeft 与一个字符串,例如'topLeft' - 一个例子是:
@mixin getCorner($topLeft:false, $topRight:false, $bottomRight:false, $bottomLeft:false) {
@each $corner in $topLeft, $topRight, $bottomRight, $bottomLeft {
@if #{$corner} == topLeft {
border-top-left-radius: $corner;
}
}
}
以上显然不起作用,但是在Sass中有没有办法做到这一点?