カテゴリー
HTML5 tfoot

tfootタグとは?-HTML

(例)tfootタグの使用方法

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

<table>
<caption>
<strong>お肉</strong>
<details>
<summary>このテーブルの説明</summary>
<p>説明文補助</p>
</details>
</caption>
<thead>
<tr><th>長所</th><th>どこ</th><th>短所</th></tr>
</thead>
<tbody>
<tr><td>品質が素晴らしい</td><th>高級焼肉店</th><td>値段が高価、予約が必要</td></tr>
<tr><td>値段が良心的、気軽</td><th>大衆焼肉店</th><td>品質が微妙、休みの日は混む</td></tr>
</tbody>
</table>

tfootタグとは?-HTML

 tfootタグとは、tableのフッタを指定するタグです。
 tableはタイトル・ヘッダ・ボディ・フッタという構造になっており、tfootタグによりフッタを定義します。tfootタグはあくまでコンピュータがtable構造を正確に読み取るためのものであり、デザイン面に変化があるタグではありません。