鉴于以下.html
<!-- shared-styles.html -->
<dom-module id="shared-styles">
<template>
<style>
.red { color: red; }
</style>
</template>
</dom-module>
和.dart src
@property
String redColor = ...
如何将redColor属性绑定到.html声明元素中的color属性?
由于
答案 0 :(得分:0)
不支持此功能。
我会使用Polymer API更改polymer 1.0 - how to change font size programmatically?中显示的CSS变量作为解决方法。