聚合物“自定义风格”的身体和html风格泄漏到当地的dom

时间:2016-03-05 20:42:55

标签: polymer polymer-1.0

我有一个custom-styles文件,用于定义html和body:

<style is="custom-style">
html, body { color: #ffffff; background-color: #212121; }
</style>

我遇到的问题是这些样式泄漏到本地dom中的自定义元素,使字体颜色变为白色。

这不应该根据此处的文档进行:Can I mix MySQL APIs in PHP?

我的问题是:这是默认行为还是这个错误?

由于

1 个答案:

答案 0 :(得分:1)

我很确定这与custom-style无关,而与body无关。您需要将元素的colorbackground-color更改为inherit以外的其他内容。

另见CSS to prevent child element from inheriting parent styles