将样式属性绑定到 polymer-1.0 中的组件属性

Binding style attributes to component properties in polymer-1.0

给定以下 .html

.html

<!-- shared-styles.html -->
<dom-module id="shared-styles">
  <template>
    <style>
      .red { color: red; }
    </style> 
  </template>
</dom-module>

和 .dart 源代码

.飞镖

@property
String redColor = ...

如何将 redColor 属性 绑定到 .html 声明元素中的颜色属性?

谢谢

这是不支持的。

我会使用 Polymer API 来更改 CSS 变量,如 中所示作为解决方法。