HTML: Figure Tag

By Xah Lee. Date: . Last updated: .

Figure and figcaption tags

figure

Used for including figures with caption (as in a book), typically a illustration, photo, diagram, but can also be video, animation, table, code example, etc.

figcaption
  • For figure caption.
  • Must be inside figure.

🛑 WARNING: the figcaption tag must be the first or last child of the figure tag.

Example

Code

<figure>
<img src="i/tile_A.png" alt="tile A" width="128" height="128" />
<figcaption>
a tile pattern
</figcaption>
</figure>
figure {
 display: inline-block;
 padding: 0;
 margin: 10px 0;
}

figure > img {
 box-shadow: 3px 3px 8px 4px silver;
}

Browser shows

tile A
a tile pattern

Browser Support

HTML image tags