SASS将变量添加到列表中

时间:2015-03-10 15:06:08

标签: css sass

我有以下变量列表:

$list: 'one', 'two', 'three'

我需要使用这个列表,但暂时还有一个值,我怎么能这样做?

$list: 'one', 'two', 'three'
$list-group: $list, 'four'

@for $i from 1 through length($list-group)
    .color-#{ nth($list-group, $i) }
        content: nth($list-group, $i)

1 个答案:

答案 0 :(得分:1)

您可以使用insert-nthappend

append

append($list, 'four', [$separator])

insert-nth

$list: 'one', 'two', 'three';
$list-group: insert-nth($list, 4, 'four');