2

When I am trying to use this code

$column-width: (
    first: 210px
    second: 200px
    third: 100px
    )

@each $column, $width in $column-width
    .col-#{$column}
        width: $width

I have got an error

Message:
    _sass\grid.sass
Error: unclosed parenthesis
        on line 1 of _sass/grid.sass
>> $column-width: ( {
   ---------------^

How can I fix it?

4

1 回答 1

4

SASS 不支持地图的多行语法。

目前的解决方案

$column-width: (first: 210px, second: 200px, third: 100px)
于 2017-08-21T16:50:05.383 回答