0

我发现了这个有趣的SCSS 高级指南,其中有很多很酷的方法可供使用。然后我被困在下面的那个,迭代器很清楚,但我不明白数字1和数字2的用途。有任何想法吗??

SCSS

$buttonConfig: 'save' 50px, 'cancel' 50px, 'help' 100px; 

@each $tuple in $buttonConfig {
  .button-#{nth($tuple, 1)} {
    width: nth($tuple, 2);
  }
}

编译的 CSS

.button-save {
  width: 50px;
}
.button-cancel {
  width: 50px;
}
.button-help {
  width: 100px;
}
4

1 回答 1

1

nth($list, $index): 返回 $list 中 $index 位置的值,所以在最后一个例子中, $buttonConfig: 'save' 50px, 'cancel' 50px, 'help' 100px; $tuple在第一次迭代中将是 'save' 50 所以 ($tuple, 1) 将被保存并且 ($tuple, 2) 将是宽度值 50px 等等。

于 2019-01-17T10:32:49.997 回答