HTML <figure> 标签
实例
使用 <figure> 元素标记文档中的照片,使用 <figcaption> 元素定义照片的标题:
<figure>
<img src="pic_trulli.jpg" alt="特鲁利" style="width:100%">
<figcaption>图 1 - 特鲁利,普利亚,意大利。</figcaption>
</figure>
亲自试一试 »
<img src="pic_trulli.jpg" alt="特鲁利" style="width:100%">
<figcaption>图 1 - 特鲁利,普利亚,意大利。</figcaption>
</figure>
下面有更多实例。
定义和用法
<figure> 标签规定独立的流内容(图像、图表、照片、代码等等)。
figure 元素的内容应该与主内容相关,但如果被删除,则不应对文档流产生影响。
提示: <figcaption> 元素用于为 <figure>
元素添加标题。
浏览器支持
表中的数字指完全支持该元素的第一个浏览器版本。
元素 | |||||
---|---|---|---|---|---|
<figure> | 8.0 | 9.0 | 4.0 | 5.1 | 11.0 |
全局属性
<figure>
标签支持 HTML 中的全局属性。
事件属性
<figure>
标签支持 HTML 中的事件属性。
更多实例
实例
使用CSS设置 <figure> 和 <figcaption> 的样式:
<html>
<head>
<style>
figure {
border: 1px #cccccc solid;
padding: 4px;
margin: auto;
}
figcaption {
background-color: black;
color: white;
font-style: italic;
padding: 2px;
text-align: center;
}
</style>
</head>
<body>
<figure>
<img src="pic_trulli.jpg" alt="特鲁利" style="width:100%">
<figcaption>图 1 - 特鲁利,普利亚,意大利。</figcaption>
</figure>
</body>
</html>
亲自试一试 »
<head>
<style>
figure {
border: 1px #cccccc solid;
padding: 4px;
margin: auto;
}
figcaption {
background-color: black;
color: white;
font-style: italic;
padding: 2px;
text-align: center;
}
</style>
</head>
<body>
<figure>
<img src="pic_trulli.jpg" alt="特鲁利" style="width:100%">
<figcaption>图 1 - 特鲁利,普利亚,意大利。</figcaption>
</figure>
</body>
</html>
相关页面
HTML DOM 参考手册: Figure 对象
默认CSS设置
大多数浏览器将使用以下默认值显示 <figure>
元素:
实例
figure {
display: block;
margin-top: 1em;
margin-bottom: 1em;
margin-left: 40px;
margin-right: 40px;
}
亲自试一试 »
display: block;
margin-top: 1em;
margin-bottom: 1em;
margin-left: 40px;
margin-right: 40px;
}