0

我有一个 2 行 3 列的 html 表。

我将另一个表放在第一个表的第 2 行的第 2 列内,但第二个表超出了第一个表的边界。我很困惑。

4

1 回答 1

0

分享您的代码或检查您的序列

<table>
<tr>
  <td>1st row and 1st column</td>
  <td>1st row and 2nd column</td>
  <td>1st row and 3rd column</td>
</tr>
<tr>
  <td>2nd row and 1st column</td>
  <td>                   <!-- you want insert Table here -->  
    <table>
    <tr><td>nested table</td></tr>
    <tr><td>nested table</td></tr>
    </table>
  </td>
  <td>2nd row and 3rd column</td>
 </tr>
</table>

更多信息请访问这里

于 2012-08-28T09:24:35.983 回答