如何继承父母的风格?

时间:2017-10-21 15:16:13

标签: javascript html iframe disqus

您无法将父级的属性继承到iframe中 来源:Iframe inherit from parent

但是如何从父母那里继承它的背景颜色呢? 例如,此网站:https://kostasbariotis.com/geospatial-query-with-mongodb-and-node-js/

1 个答案:

答案 0 :(得分:1)

因为<iframe>是透明的。

例如:

<div style="background-color:#000;">
    <iframe src="about:blank" allowtransparency="true" style="background-color: transparent;" />
</div>