カテゴリー
colgroup HTML5

colgroupタグとは?-HTML

(例)colgroupタグの使用方法

See the Pen
colgroup
by linlin (@linlin098765)
on CodePen.

<table>
<caption>お肉の人気ランキング</caption>
<colgroup span="1" style="width:30px; background-color:#FF9900;">
<colgroup span="3" style="width:150px; background-color:#FF3300;">
<thead>
<tr><th>順位</th><th>名前</th><th>人気度</th><th>備考</th></tr>
</thead>
<tbody>
<tr><th>1位</th><td>飛騨牛</td><td>5</td><td>最高の霜降り</td></tr>
</tbody>
  
</table>

colgroupタグとは?-HTML

 colgroupタグは、tableのカラム(縦列)をグループ化するタグです。
 colgroupタグでカラムをグループ化することでスタイルや属性等をまとめて指定することが可能です。span属性に「1」以上の数字を指定することでグループ化するカラム数を指定できます。
 colgroupタグはcaptionタグの直下またはtableタグの直下に記述します。