我有一个custom-styles
文件,用于定义html和body:
<style is="custom-style">
html, body { color: #ffffff; background-color: #212121; }
</style>
我遇到的问题是这些样式泄漏到本地dom中的自定义元素,使字体颜色变为白色。
这不应该根据此处的文档进行:Can I mix MySQL APIs in PHP?
我的问题是:这是默认行为还是这个错误?
由于
答案 0 :(得分:1)
我很确定这与custom-style
无关,而与body
无关。您需要将元素的color
和background-color
更改为inherit
以外的其他内容。
另见CSS to prevent child element from inheriting parent styles