ContentTable

Use ContentTable for consistent comparison dimensions. Add a caption when the table needs standalone context, and always provide semantic thead and tbody sections with scoped row and column headers. Use prose or a list when the information is not genuinely tabular.

Parameters

ParameterRequiredDefaultDescription
captionNoNoneOptional visible table caption.

Example

<ContentTable caption="Responsibilities in a property review">
  <thead>
    <tr>
      <th scope="col">Stage</th>
      <th scope="col">Responsible role</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">Prepare evidence</th>
      <td>Property operator</td>
    </tr>
    <tr>
      <th scope="row">Approve publication</th>
      <td>Content reviewer</td>
    </tr>
  </tbody>
</ContentTable>
Responsibilities in a property review
StageResponsible role
Prepare evidenceProperty operator
Approve publicationContent reviewer