LoginSignup
3
4

More than 5 years have passed since last update.

html table セルの結合

Posted at

結論

td、th要素にcolspan属性、rowspan属性を指定する。

colspan:横に結合
rowspan:縦に結合
スクリーンショット 2019-02-09 16.53.52.png

index.html
<table frame="box" border="1">
    <tr>
        <td colspan="3">セルの横結合</td>
        <td rowspan="2">セルの縦結合</td>
    </tr>
    <tr>
        <td>セル第一形態</td>
        <td>セル第二形態</td>
        <td>完全体</td>
    </tr>
</table>
3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4