写一个table
<table width='100%' height='100%'>
<tr>
<td width='80%' height='80%'>
<iframe name='a' width='100%' height='100%'></iframe>
</td>
<td width='20%' height='100%' rowspan=2>
<iframe name='c' width='100%' height='100%'></iframe>
</td>
<td width='80%' height='20%'>
<iframe name='b' width='100%' height='100%'></iframe>
</td></table>

解决方案 »

  1.   

    iframe 用height="100%" 可以?
      

  2.   

    <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onunload="location='b.htm'">
    <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
      <tr> 
        <td width="80%" height="80%"><iframe width="100%" height="100%" src="a.htm" frameborder="0"></iframe></td>
        <td width="20%" height="100%" rowspan="2"><iframe width="100%" height="100%" src="a.htm" frameborder="0"></iframe></td>
      </tr>
      <tr> 
        <td width="80%" height="20%"><iframe width="100%" height="100%" src="a.htm" frameborder="0"></iframe></td>
      </tr>
    </table>
    </body>
      

  3.   

    <table width='100%' height='100%'>
    <tr>
    <td width='80%' height='80%'>
    <iframe name='a' width='100%' height='100%'></iframe>
    </td>
    <td width='20%' height='100%' rowspan=2>
    <iframe name='c' width='100%' height='100%'></iframe>
    </td>
    </tr>
    <tr>
    <td width='80%' height='20%'>
    <iframe name='b' width='100%' height='100%'></iframe>
    </td>
    </tr></table>