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快速开发企业站点</p> <figure> <p>本课以最新版ThinkPHP5.0.10为基础进行开发,全程实录一个完整企业点,从后台到前台,从控制器到路由的全套完整教程,不论是你是新人,还是有一定开发经验的程序员,都可以从中学到实用的知识~~</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