0

2 行 3 列の html テーブルがあります。

1番目の表の2行2列目に別の表を入れているのですが、2番目の表が1番目の表の境界をはみ出してしまいます。よくわかりません。

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