files/en-us/web/html/reference/elements/figcaption/index.md
The <figcaption> HTML element represents a caption or legend describing the rest of the contents of its parent {{HTMLElement("figure")}} element, providing the <figure> an {{glossary("accessible name")}}.
{{InteractiveExample("HTML Demo: <figcaption>", "tabbed-shorter")}}
<figure>
<figcaption>An elephant at sunset</figcaption>
</figure>
figure {
border: thin silver solid;
display: flex;
flex-flow: column;
padding: 5px;
max-width: 220px;
margin: auto;
}
img {
max-width: 220px;
max-height: 150px;
}
figcaption {
background-color: #222222;
color: white;
font: italic smaller sans-serif;
padding: 3px;
text-align: center;
}
This element only includes the global attributes.
Please see the {{HTMLElement("figure")}} page for examples on <figcaption>.
{{Specifications}}
{{Compat}}