您无法将父级的属性继承到iframe中 来源:Iframe inherit from parent。
但是如何从父母那里继承它的背景颜色呢? 例如,此网站:https://kostasbariotis.com/geospatial-query-with-mongodb-and-node-js/
答案 0 :(得分:1)
因为<iframe>
是透明的。
例如:
<div style="background-color:#000;">
<iframe src="about:blank" allowtransparency="true" style="background-color: transparent;" />
</div>