我有以下变量列表:
$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)
答案 0 :(得分:1)
您可以使用insert-nth
或append
append
:
append($list, 'four', [$separator])
insert-nth
:
$list: 'one', 'two', 'three';
$list-group: insert-nth($list, 4, 'four');