(例)captionタグの使用方法
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>
captionタグとは?-HTML
captionタグはtableタグのタイトル(キャプション)を表示させるタグです。
captionタグはtableタグの子要素に記述します。