<figcaption> HTML 元素是用来描述其父节点 {{HTMLElement("figure")}} 元素里的其余内容的标题或说明。为 <figure> 提供一个{{glossary("accessible description", "无障碍描述")}}。
{{InteractiveExample("HTML Demo: <figcaption>", "tabbed-shorter")}}
```html interactive-example
```css interactive-example
figure {
border: thin #c0c0c0 solid;
display: flex;
flex-flow: column;
padding: 5px;
max-width: 220px;
margin: auto;
}
img {
max-width: 220px;
max-height: 150px;
}
figcaption {
background-color: #222;
color: #fff;
font: italic smaller sans-serif;
padding: 3px;
text-align: center;
}
属性
该元素仅包含全局属性。
示例
有关 <figcaption> 的示例,请参见 {{HTMLElement("figure")}} 页面。
技术概要
| 内容分类 | 无。 |
|---|---|
| 允许的内容 | 流式内容。 |
| 标签省略 | 不允许,开始标签和结束标签都不能省略。 |
| 允许的父元素 |
{{HTMLElement("figure")}} 元素;<figcaption> 元素必须是它的第一个或者最后一个子节点。
|
| 隐式 ARIA 角色 | 没有对应的角色 |
| 允许的 ARIA 角色 |
group、none、presentation
|
| DOM 接口 | HTMLElement |