代码实例
<table border = "1"> <tr> <th>Column 1</th> <th>Column 2</th> <th>Column 3</th> </tr> <tr> <td rowspan = "2">Row 1 Cell 1</td> <td>Row 1 Cell 2</td> <td>Row 1 Cell 3</td> </tr> <tr> <td>Row 2 Cell 2</td> <td>Row 2 Cell 3</td> </tr> <tr> <td colspan = "3">Row 3 Cell 1</td> </tr> </table>
尝试一下 »
点击“尝试一下”按钮查看在线实例
- 如果要将两个或多个列合并为一个列,将使用
colspan
属性 - 如果要合并两行或更多行,则将使用
rowspan
属性。