disqus 如何继承 parent 的样式?
How disqus able inherit parent's styles?
您不能将 parent 的属性继承到 iframe 中
资料来源:Iframe inherit from parent.
但是为什么 disqus 能够从 parent 继承它的背景颜色?
例如这个网站:https://kostasbariotis.com/geospatial-query-with-mongodb-and-node-js/
因为<iframe>
是透明的。
示例:
<div style="background-color:#000;">
<iframe src="about:blank" allowtransparency="true" style="background-color: transparent;" />
</div>
您不能将 parent 的属性继承到 iframe 中 资料来源:Iframe inherit from parent.
但是为什么 disqus 能够从 parent 继承它的背景颜色? 例如这个网站:https://kostasbariotis.com/geospatial-query-with-mongodb-and-node-js/
因为<iframe>
是透明的。
示例:
<div style="background-color:#000;">
<iframe src="about:blank" allowtransparency="true" style="background-color: transparent;" />
</div>