使用对象属性作为值不正确

时间:2015-12-10 13:57:55

标签: stylus

我想通过迭代对象

来使用颜色属性
$social-icons = {
    mr: {
        height: 16px
        color: #148de2,
        name: 'mail.ru'
    }
}

.icon
  for $icon, $icon-data in $social-icons
    &_{$icon}:after
      display none
      background $icon-data.color

但它粉碎了最后一个字符串'background' 我错了什么?

1 个答案:

答案 0 :(得分:1)

  • 这是嵌套选择器和散列值之间的解析器没有区别的示例,如果:省略。
  • 从版本1.0开始:不可选。

好吧