使用polymer.dart,如何确保使用页面中引用的样式仍可在模板中使用?
我有一个消费或主页面,因此:
<html> <head> <link rel="stylesheet" href="aplaceontheinterweb" /> <link rel="import" href="ponies.html" /> </head> <body> <div class="defined_in_the_included_file"> ... </div> <div is="a-pony"></div> <script src="packages/polymer/boot.js"></script> </body> </html>
和模板,因此:
<polymer-element name="a-pony" extends="div"> <template> <div class="defined_in_the_css_file_referenced_in_main_html"> .... </div> </template> </polymer-element>
和< div>在呈现页面时,在a-pony元素中没有正确设置样式.