使用 <figure> 元素标签文档中的照片,并使用 <figcaption> 元素定义照片的标题:
<figure> <img src="../assets/editors-006.png" height="120" alt="Trulli" /> <figcaption>图.1 - 第一个HTML页面</figcaption> </figure>
<figcaption>
标签定义了 <figure> 元素的标题。
<figcaption>
元素可以作为 <figure> 元素的第一个或最后一个子元素放置。
表中的数字指定了完全支持该元素的第一个浏览器版本。
Element | |||||
---|---|---|---|---|---|
<figcaption> | 8.0 | 9.0 | 4.0 | 5.1 | 11.0 |
<figcaption>
标签支持 HTML 中的全局属性。
<figcaption>
标签支持 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="../assets/editors-006.png" alt="Trulli" style="width:100%"> <figcaption>图.1 - 第一个HTML页面</figcaption> </figure> </body> </html>
大多数浏览器将显示具有以下默认值的 <figcaption>
元素:
figcaption {
display: block;
}