td标签如何横向合并(colspan)、纵向合并(colspan)、表格单元格合并?

我来纠错
//colspan定义和用法,colspan 属性规定单元格可横跨的列数。

//实例,表格单元横跨两列的表格:
<table border="1">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td colspan="2">January</td>
  </tr>
  <tr>
    <td colspan="2">February</td>
  </tr>
</table>

//rowspan定义和用法,rowspan 属性规定单元格可横跨的行数。
实例,表格单元横跨两行的表格:
<table border="1">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100.00</td>
    <td rowspan="2">$50</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$10.00</td>
  </tr>
</table>
发送
热门关键词:
命令
知识类型:
标题描述:
详细解答:

提交审核您编辑的知识会经过 前端大牛 人工审核。