UK[?f?g?(r)] US[?f?gj?r]

n.Character; Number; Figure; Arithmetic

vi. Calculation; Appearance; Playing a role

vt .count; estimate; speculate; think

Third person singular: figures plural: figures present participle: figuring past tense: figured past participle: figured

html figure tag syntax

Function:Specify independent stream content (images, charts, photos, code, etc.).

Note: The content of the figure element should be related to the main content, but if removed, it should have no impact on the document flow.

Note: All major browsers support the <figure> tag. Internet Explorer 8 and earlier does not support the <figure> tag. The <figure> tag is a new tag in HTML 5.

html figure tag example

<!DOCTYPE HTML>
<html>
<body>

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

<figure>
    <p>本課以最新版ThinkPHP5.0.10為基礎(chǔ)進(jìn)行開(kāi)發(fā),全程實(shí)錄一個(gè)完整企業(yè)點(diǎn),從后臺(tái)到前臺(tái),從控制器到路由的全套完整教程,不論是你是新人,還是有一定開(kāi)發(fā)經(jīng)驗(yàn)的程序員,都可以從中學(xué)到實(shí)用的知識(shí)~~</p>

    <img src="http://img.php.cn/upload/course/000/000/003/5a5338f71e13f195.jpg" width="350" height="234" />
</figure>

</body>
</html>

Run instance ?

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