<col> 要素
は、<table> 要素
にある親の<colgroup> 要素
で表される縦列グループ内の1つ以上の列を表します。span 属性
で複数の縦列を表すことができます。
- カテゴリー
- なし
- 配置場所
span 属性
を持たない<colgroup> 要素
の子要素として。- 内容
- なし(空要素)
- 属性
サンプル
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<title>HTML5 › col</title>
<style>
table { border-collapse: collapse; }
th, td { padding: .5em; border: #ccc 1px solid; }
.name { background: #eef; }
.sex-age { background: #fee; }
</style>
</head>
<body>
<h1>HTML5 › col</h1>
<table>
<caption>入居者一覧</caption>
<colgroup>
<col class="name" />
<col span="2" class="sex-age" />
</colgroup>
<thead>
<tr><th>名前</th><th>性別</th><th>年齢</th></tr>
</thead>
<tbody>
<tr><th>やまだ いちろう</th><td>男</td><td>96</td></tr>
<tr><th>さとう じろう</th><td>男</td><td>78</td></tr>
<tr><th>すずき さくら</th><td>女</td><td>84</td></tr>
</tbody>
</table>
</body>
</html>