我正在用 HTML5 制作一个表格,我想在另外两个单元格上放置一个单元格。我在表格中有 iframe。我还希望它在任何单元格之间没有间距(没有边框或任何东西)谢谢。
到目前为止我的代码:
<table border="0">
<tr>
<th>
<iframe frameborder="100" src="./top.htm" width="900" height="108" scrolling="no" seamless="seamless"></iframe>
</th>
</tr>
<td>
<iframe src="./left.htm" name="link1" width="160" height="700" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" seamless="seamless"> </iframe>
</td>
<td>
<iframe src="./home.htm" name="link2" width="740" height="700" scrolling="auto" marginwidth="0" marginheight="0" frameborder="0" seamless="seamless"></iframe>
</td>
</table>