HTML <figure> 元素代表一段独立的内容,经常与说明(caption){{HTMLElement("figcaption")}} 配合使用,并且作为一个独立的引用单元。当它属于主内容流(main flow)时,它的位置独立于主体。这个标签经常是在主文中引用的图片,插图,表格,代码段等等,当这部分转移到附录中或者其他页面时不会影响到主体。
| 内容分类 | Flow content, sectioning root, palpable content. |
|---|---|
| 允许的内容 | A {{HTMLElement("figcaption")}} element, followed by flow content; or flow content followed by a {{HTMLElement("figcaption")}} element; or flow content. |
| 标签省略 | {{no_tag_omission}} |
| 允许的父元素 | 所有接受 Flow content 的元素 |
| 允许的 ARIA roles | {{ARIARole("group")}}, {{ARIARole("presentation")}} |
| DOM 实例 | {{domxref("HTMLElement")}} |
此元素只包含 全局属性。
<figure>是图像,插图,图表,代码片段等,在文档的主流程中引用,但可以移动到文档的另一部分或附录而不影响主流程。<figure>元素的内容轮廓将从文档的主要轮廓中排除。<figure>元素相关联。图中找到的第一个<figcaption>元素显示为图的标题。<!-- Just an image --> <figure> <img src="https://developer.mozilla.org/static/img/favicon144.png" alt="A robotic monster over the letters MDN."> </figure> <!-- Image with a caption --> <figure> <img src="https://developer.mozilla.org/static/img/favicon144.png" alt="A robotic monster over the letters MDN."> <figcaption>MDN Logo</figcaption> </figure>
<figure>
<figcaption>Get browser details using <code>navigator</code>.</figcaption>
<pre>
function NavigatorExample() {
var txt;
txt = "Browser CodeName: " + navigator.appCodeName;
txt+= "Browser Name: " + navigator.appName;
txt+= "Browser Version: " + navigator.appVersion ;
txt+= "Cookies Enabled: " + navigator.cookieEnabled;
txt+= "Platform: " + navigator.platform;
txt+= "User-agent header: " + navigator.userAgent;
}</pre>
</figure>
<figure> <figcaption><cite>Edsger Dijkstra:</cite></figcaption> <blockquote>If debugging is the process of removing software bugs, then programming must be the process of putting them in.</blockquote> </figure>
<figure>
<p style="white-space:pre">
Bid me discourse, I will enchant thine ear,
Or like a fairy trip upon the green,
Or, like a nymph, with long dishevell'd hair,
Dance on the sands, and yet no footing seen:
Love is a spirit all compact of fire,
Not gross to sink, but light, and will aspire.</p>
<figcaption><cite>Venus and Adonis</cite>,
by William Shakespeare</figcaption>
</figure>
| 规范 | 状态 | 备注 |
|---|---|---|
| {{SpecName('HTML WHATWG', 'semantics.html#the-figure-element', '<figure>')}} | {{Spec2('HTML WHATWG')}} | |
| {{SpecName('HTML5 W3C', 'grouping-content.html#the-figure-element', '<figure>')}} | {{Spec2('HTML5 W3C')}} |
{{Compat("html.elements.figure")}}