是否可以在触笔中使用范围和单个值(组合)进行for
循环?
for item in range(2, 7) 14 33
li:nth-child({item})
color red
或
for item in 2..7 14 33
li:nth-child({item})
color red
该代码无效。它只能在使用范围或一组单个值时才能工作。
答案 0 :(得分:1)
不幸的是,Stylus在标准库中没有concat
之类的内容,只有push
,但您可以轻松编写它:
concat()
ret = ()
for item in arguments
push(ret, item)
ret
body
for i in concat(range(0, 5), 10, 55)
test: i