(例)tbodyタグの使用方法
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>
tbodyタグとは?-HTML
tbodyタグとは、tableのボディ部分を定義するタグです。
tbodyタグはtableタグの子要素として、captionタグやcolgroupタグより後に記述します。tbodyタグは複数使用可能であり、特段tbodyタグを使用しなくても問題ありませんが、tbodyタグを使用することでコンピューターが表の構造を読み取りやすくなります。