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 に答える