html5 タグ
翻訳結果:
fig
英[fɪg] 美[fɪɡ]
n.Fig; イチジクの木
caption
UK[ˈkæpʃn] US[ˈkæpʃən]
n. 字幕; タイトル、説明テキスト、字幕; 3 番目のファイル
vt. 説明を追加します (写真、写真など)。 ) テキスト、(ドキュメントなど) にタイトルを追加、…
にサブタイトルを追加html5 タグ構文
Function: <figcaption> タグは、Figure 要素のタイトル (キャプション) を定義します。
「figcaption」要素は、「figure」要素の最初または最後の子要素として配置する必要があります。
html5 タグ例
<!DOCTYPE html> <html> <body> <p>The Pulpit Rock is a massive cliff 604 metres (1982 feet) above Lysefjorden, opposite the Kjerag plateau, in Forsand, Ryfylke, Norway. The top of the cliff is approximately 25 by 25 metres (82 by 82 feet) square and almost flat, and is a famous tourist attraction in Norway.</p> <figure> <img src="http://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg" alt="The Pulpit Rock" width="304" height="228"> <figcaption>Fig.1 - The Pulpit Rock, Norway.</figcaption> </figure> </body> </html>
[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します