我有一个自定义的Polymer-Element:
<polymer-element name="lorem-element" noscript>
<template>
<h1>My Text</h1>
</template>
</polymer-element>
我想使用<h1>
伪元素设置来自外部的::shadow
标记,例如
lorem-element::shadow h1 {
color : blue;
}
这在Chrome中运行良好,但在Firefox 33和InternetExplorer 11中它不起作用?!?!
有关如何使其在FF和IE中运行的任何建议吗?