问题:把含有Form的table的HTML页面嵌套在另外一个页面的table里的某行,最后运行的结果:给行的下班部分有空白,如果去掉表单,问题就得到解决,
      谁有好的方法在不去掉表单的情况下,让下面的空白页去掉,下面的是要嵌入的页面含有表单:
     
     <body>
  <form id="form1" name="form1" method="post" action="">
  <table width="960" border="1" align="center" bgcolor="#993300">
    <tr>
      <td height="82" bgcolor="#999966">logo</td>
    </tr>
  </table>
</form>
  </body>

解决方案 »

  1.   

    加上<form ... style="margin:0px">试试
      

  2.   

    form放到Table内试试:
     <table width="960" border="1" align="center" bgcolor="#993300"> 
     <form id="form1" name="form1" method="post" action=""> 
        <tr> 
          <td height="82" bgcolor="#999966">logo </td> 
        </tr> 
      </form> 
      </table>