0

有没有办法用 iFrame 做到这一点并让它适用于所有浏览器?或者我是否必须使用 Javascript。如果有的话,有人可以帮助我吗?

我需要有一个自动高度,以便它根据需要扩展。

谢谢!

4

1 回答 1

0

我前段时间为我找到了解决方案。它没有 JS,但你必须使用table. 这就是我为我使用它的方式,也许您需要根据自己的需要进行一些更改。

<head>
<style>
*{margin:0;padding:0}
html, body {height:100%;width:100%;overflow:hidden}
table {height:100%;width:100%;table-layout:static;border-collapse:collapse}
iframe {height:100%;width:100%}

.header {border-bottom:1px solid #000}
.content {height:100%}
</style>
</head>

<table>
  <td class="header"></td>
  <td class="content" width="80%" valign="top"><iframe id="reportframe" src="src.html" frameborder="0"></td>
</table>
于 2012-12-21T19:57:28.140 回答