テーブルタグの編集 html

備忘録として、テーブルタグの編集タグを紹介しておきます。

 

テーブルタグのカラー

bgcolor=”#FFCCFF”をいれる

例:<tr bgcolor=”#FFCCFF” >

タグ内を折り返さない

white-space: nowrap;をいれる

例:    <tr  style=”white-space: nowrap;”>

縦書きにする

writing-mode: tb-rl;をいれる

例:    <th style=”writing-mode: tb-rl;”>あああああ</th>

縦に結合する

rowspan=”6″をいれる(6の部分は結合セルの数)

例:    <th rowspan=”6″ >あああああ</th>