HTML <figcaption> Tag


Use a <figure> element to mark up a photo in a document.

The <figure> element can also contain a <figcaption>:

<figure>
  <img src="pic_trulli.jpg" alt="Trulli" style="width:100%">
  <figcaption>Fig.1 - Trulli, Puglia, Italy.</figcaption>
</figure>

Definition and Usage

The <figcaption> tag defines a caption for a <figure> element.

The <figcaption> element can be placed as the first or last child of the <figure> element.


Differences Between HTML 4.01 and HTML5

The <figcaption> tag is new in HTML5.


Global Attributes

The <figcaption> tag also supports the Global Attributes in HTML.


Event Attributes

The <figcaption> tag also supports the Event Attributes in HTML.


Default CSS Settings

Most browsers will display the <aside> element with the following default values:

aside {
  display: block;
}