【发布时间】:2015-09-08 21:53:29
【问题描述】:
我在互联网上寻找过这个,但找不到一个有效的例子。有人可以指导我让 CSS 变量在 Dart 中工作吗? 资源: http://www.w3.org/TR/css-variables/ 有人提到了csslib,但我没有看到解决方案: https://github.com/dart-lang/sdk/issues/16710 https://github.com/dart-lang/csslib/issues/9
我正试图让这个在聚合物组件内部工作:
:host {
--text-color: #4f1f91;
}
.someLabel {
color: var(--text-color);
}
我知道我可以使用 dart/polymer 变量并执行以下操作:
.someLabel {
color: {{ polymerVar }};
}
但是,为什么 CSS 变量在 08/2015 上不起作用??
【问题讨论】: