English[?k?p?n] US[?k?p??n]

n. Subtitle; title, caption, subtitle; third file

vt. Add caption to (pictures, photos, etc.); Add a title to (a document, etc.); add a subtitle to...

Third person singular: captions Plural: captions Present participle: captioning Past tense: captioned Past participle: captioned

html figcaption tag syntax

Function: Define the title (caption) of the figure element.

Note: The "figcaption" element should be placed as the first or last child element of the "figure" element.

Note: All major browsers support the <figcaption> tag. Internet Explorer 8 and earlier does not support the <figcaption> tag.

html figcaption tag example

<!DOCTYPE html>
<html>
<body>

<p>ThinkPHP5快速開發(fā)企業(yè)站點(diǎn)</p>

<figure>
    <img src="http://miracleart.cn/tpl/Index/Static/img/banner3.jpg" alt="php.cn" width="304" height="228">
    <figcaption>Fig.1 - ThinkPHP5快速開發(fā)企業(yè)站點(diǎn)</figcaption>
</figure>

</body>
</html>

Run instance ?

Click the "Run instance" button to view the online instance