Skip to main content

<caption>


  • Date:
    08/02/2023
  • Modified:
    27/05/2026
  • Category:
    Elements

The <caption> element provides a short description of a <figure>, <figureGroup> or <table>.

Notes

  • For figures and figure groups, <caption> may appear at most once.

Examples

Image with caption

<figure>
  <title number="A" label="figure">A</title>
  <img role="informative" src="/knowledgebase/img/p14_A.jpg" type="photo"/>
  <caption>Wegen langs steile rotswanden kunnen met dit soort gaasconstructies veilig gemaakt worden. Vallende stenen stuiteren via het gaas verder het dal in en komen dus niet op de weg. Deze methode is het goedkoopst, omdat je de netten alleen aanbrengt waar het écht nodig is.</caption>
</figure>

Table with caption

<table>
  <title number="1">Table 1</title>
  <caption>Compensation for Humiliation, Loss of Dignity and Injury to Feelings, 1992-1999</caption>
  <thead>
    <tr>
      <th>Level of compensation awarded</th>
      <th>Frequency</th>
      <th>percentages</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>No compensation awarded</td>
      <td>318</td>
      <td>16.1</td>
    </tr>
    <tr>
      <td>Up to $50000</td>
      <td>1147</td>
      <td>58.0</td>
    </tr>
    <tr>
      <td>Between $5000 and $10.000</td>
      <td>398</td>
      <td>20.1</td>
    </tr>
    <tr>
      <td>Over $10.000</td>
      <td>115</td>
      <td>5.8</td>
    </tr>
  </tbody>
</table>

  • Date:
    08/02/2023
  • Modified:
    27/05/2026
  • Category: