SASS 将变量添加到列表
SASS add variable to list
我有以下变量列表:
$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)
您可以使用 insert-nth
或 append
append
:
append($list, 'four', [$separator])
insert-nth
:
$list: 'one', 'two', 'three';
$list-group: insert-nth($list, 4, 'four');
我有以下变量列表:
$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)
您可以使用 insert-nth
或 append
append
:
append($list, 'four', [$separator])
insert-nth
:
$list: 'one', 'two', 'three';
$list-group: insert-nth($list, 4, 'four');