Back to main list

CAPTION with H3 - XHTML 1.0

Example

H3

Header cell 1 Header cell 2
Table cell 1 Table cell 2

Markup

<table>
  <caption>
    <h3 class="test2">H3</h3>
  </caption>
  <thead>
    <tr>
      <th>Header cell 1</th>
      <th>Header cell 2</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Table cell 1</td>
      <td>Table cell 2</td>
    </tr>
  </tbody>
</table>