LESS CSS:如何创建和引用关联列表/数组

时间:2014-10-17 23:30:16

标签: css less stylus

来自Stylus,我正在寻找创建这样的嵌套数组/列表结构(Stylus),但是在LESS中:

$myicons = {
    steel: "\e826"
    other: "\e826"
    coolstuff: "\e826"
    ...
}

for icon, ascii in $myicons
    .icon-{icon}
        @extend $icon-class
        &:before
            content ascii

查看文档,似乎没有这样的数据结构可用。任何人都可以建议一种方法来创建一个类似的结构,我可以在LESS中循环键/值对吗?

0 个答案:

没有答案