Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Sass 列表函数


Sass 列表函数

列表函数用于访问列表中的值、组合列表以及向列表中添加项目。

Sass 列表是不可变的(它们不能更改)。因此,返回列表的列表函数将返回一个新列表,而不是更改原始列表。

Sass 列表从 1 开始索引。列表中的第一个列表项位于索引 1,而不是 0。

下表列出了 Sass 中所有列表函数

函数 描述和示例
append(list, value, [separator]) 将单个value添加到列表的末尾。separator可以是auto、comma或space。auto为默认值。

示例:
append((a b c), d)
结果:a b c d
append((a b c), (d), comma)
结果:a, b, c, d
index(list, value) 返回列表中value的索引位置。

示例
index(a b c, b)
结果:2
index(a b c, f)
结果:null
is-bracketed(list) 检查列表是否包含方括号。

示例
is-bracketed([a b c])
结果:true
is-bracketed(a b c)
结果:false
join(list1, list2, [separator, bracketed]) list2附加到list1的末尾。separator可以是auto、comma或space。auto为默认值(将使用第一个列表中的分隔符)。bracketed可以是auto、true或false。auto为默认值。

示例
join(a b c, d e f)
结果:a b c d e f
join((a b c), (d e f), comma)
结果:a, b, c, d, e, f
join(a b c, d e f, $bracketed: true)
结果:[a b c d e f]
length(list) 返回列表的长度。

示例
length(a b c)
结果:3
list-separator(list) 返回用作字符串的列表分隔符。可以是space或comma。

示例
list-separator(a b c)
结果:"space"
list-separator(a, b, c)
结果:"comma"
nth(list, n) 返回列表中的第n个元素。

示例
nth(a b c, 3)
结果:c
set-nth(list, n, value) 将第n个列表元素设置为指定的value

示例
set-nth(a b c, 2, x)
结果:a x c
zip(lists) 将列表组合成一个多维列表。

示例
zip(1px 2px 3px, solid dashed dotted, red green blue)
结果:1px solid red, 2px dashed green, 3px dotted blue

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.