是否可以在Stylus中实现类似的功能?
for $i in 1..5 and $n in a b c d e
.icon-{$i}:before{
content: $n
}
答案 0 :(得分:4)
回答你的问题:是的。
以下是:http://codepen.io/anon/pen/jIbdq
icon_contents = ( "a" "b" "c" "d" "e" )
for v, k in icon_contents
.icon-{k+1}:before
content v