Figure Captions

This style will be applied to the caption of a Figure or a Table. The caption inherits the style settings of the surrounding figure or table. It is possible to style figure and table captions individually by using a relative style selector.

Selectors

  • Definitions:

    • figure-caption

Style Settings

See also: Paragraph, Inline

Pseudoclasses

See also: Paragraph, Inline

Example

// Styles captions with a bold font
figure-caption {
 font-weight:  bold
}

// Set a spacing between figures and their captions
paragraph-figure figure-caption {
 margin-top: 10pt
}

// Set a spacing between table caption and table
table figure-caption {
 margin-bottom: 10pt
}