table 合并单元格

table合并单元格

  colspan -- 跨列

  rowspan -- 跨行

<table>
  <tbody>
    <tr>
      <th colspan="2">123</th>
      <th colspan="2">123</th>
    </tr>
    <tr>
      <th rowspan="2">123</th>
      <th>123</th>
      <th>123</th>
      <th>123</th>
    </tr>
    <tr>
      <th>123</th>
      <th>123</th>
      <th>123</th>
    </tr>
  </tbody>
</table>

 

posted @ 2020-07-13 15:58  大海博客  阅读(175)  评论(0)    收藏  举报