html元素超出了表列

时间:2012-08-28 09:11:08

标签: html css

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

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

1 个答案:

答案 0 :(得分: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>

更多信息请访问here