scss 使用@each映射列表中的项目

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 使用@each映射列表中的项目相关的知识,希望对你有一定的参考价值。

// on each iteration, the variable gets assigned to the current value from the list or map
@each $color in blue, red, green {
  .#{$color}-text {color: $color;}
}


// a map has slightly different syntax
$colors: (color1: blue, color2: red, color3: green);

@each $key, $color in $colors {
  .#{$color}-text {color: $color;}
}



// compiled CSS
.blue-text {
  color: blue;
}

.red-text {
  color: red;
}

.green-text {
  color: green;
}

以上是关于scss 使用@each映射列表中的项目的主要内容,如果未能解决你的问题,请参考以下文章

在 SCSS @each 循环中使用颜色函数

SCSS @each 循环可以包含多个地图吗?

使用 For Each 循环遍历列表时删除列表中的项目

scss SaSS使用@each循环并列出#sass

SCSS 插值无法为宽度分配百分比

Scss 基本使用 ( @extend @mixin@import@if@for@while@each )