CSS:iframe 未显示 100% 高度...更像是 100px 高度

CSS: iframe not displaying 100% height...more like 100px height

此页面有问题 (http://purcraft.com/madeinla/) which I'm trying to use an iframe element to display the contents of this page: (http://purcraft.com/madeinla/home2_height.html)。

宽度不错,但高度呢?似乎更像是 100px 而不是我想要的 100%。为什么是这样?这是我的代码。非常简单。

<iframe style="overflow:hidden;height:100%;width:100%" height="100%" width="100%" src="http://purcraft.com/madeinla/home2_height.html"></iframe>

这样试试:

position: absolute; and border:none;height:100% 一起提供给您的 IFRAME 以获得预期结果。

HTML:

<iframe width="100%" height="100%" src="http://purcraft.com/madeinla/home2_height.html" style="position: absolute; height: 100%; border: none"></iframe>