【HTMLリファレンス】caption要素
こんにちは(・∀・)
HTMLの要素をご紹介します。今回ご紹介するHTML要素はcaptionです。
概要
caption要素はテーブル(表)のタイトルを表示する要素です。caption要素はtable要素の直後に記述する必要があります。
汎用属性
id、class、lang、title、style、dir、tabindex、accesskey、contenteditable、spellcheck、draggable、contextmenu、hiddenの各属性を指定することができます。(汎用属性について)
カテゴリー
なし (カテゴリーについて)
要素の配置
table要素の直後に配置
要素の内容
フロー・コンテンツ *table要素は配置できません。
サンプル
HTML
<table>
<caption>タイトル</caption>
<tr>
<th>見出し</th>
<th>見出し</th>
</tr>
<tr>
<td>内容</td>
<td>内容</td>
</tr>
</table>
Result
見出し | 見出し |
---|---|
内容 | 内容 |