Table

Default

PlanetDiameter (km)Distance to Sun (AU)Orbit (days)
Mercury4,8800.3988
Venus12,1040.72225
Earth12,7421.00365
Mars6,7791.52687
Average9,1260.91341
HTML
<table>
  <thead>
    <tr>
      <th scope="col">
        Planet
      </th>
      <th scope="col">
        Diameter (km)
      </th>
      <th scope="col">
        Distance to Sun (AU)
      </th>
      <th scope="col">
        Orbit (days)
      </th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">
        Mercury
      </th>
      <td>
        4,880
      </td>
      <td>
        0.39
      </td>
      <td>
        88
      </td>
    </tr>
    <tr>
      <th scope="row">
        Venus
      </th>
      <td>
        12,104
      </td>
      <td>
        0.72
      </td>
      <td>
        225
      </td>
    </tr>
    <tr>
      <th scope="row">
        Earth
      </th>
      <td>
        12,742
      </td>
      <td>
        1.00
      </td>
      <td>
        365
      </td>
    </tr>
    <tr>
      <th scope="row">
        Mars
      </th>
      <td>
        6,779
      </td>
      <td>
        1.52
      </td>
      <td>
        687
      </td>
    </tr>
  </tbody>
  <tfoot>
    <th scope="row">
      Average
    </th>
    <td>
      9,126
    </td>
    <td>
      0.91
    </td>
    <td>
      341
    </td>
  </tfoot>
</table>

Striped

PlanetDiameter (km)Distance to Sun (AU)Orbit (days)
Mercury4,8800.3988
Venus12,1040.72225
Earth12,7421.00365
Mars6,7791.52687
Average9,1260.91341
HTML
<table class="striped">
  <thead>
    <tr>
      <th scope="col">
        Planet
      </th>
      <th scope="col">
        Diameter (km)
      </th>
      <th scope="col">
        Distance to Sun (AU)
      </th>
      <th scope="col">
        Orbit (days)
      </th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">
        Mercury
      </th>
      <td>
        4,880
      </td>
      <td>
        0.39
      </td>
      <td>
        88
      </td>
    </tr>
    <tr>
      <th scope="row">
        Venus
      </th>
      <td>
        12,104
      </td>
      <td>
        0.72
      </td>
      <td>
        225
      </td>
    </tr>
    <tr>
      <th scope="row">
        Earth
      </th>
      <td>
        12,742
      </td>
      <td>
        1.00
      </td>
      <td>
        365
      </td>
    </tr>
    <tr>
      <th scope="row">
        Mars
      </th>
      <td>
        6,779
      </td>
      <td>
        1.52
      </td>
      <td>
        687
      </td>
    </tr>
  </tbody>
  <tfoot>
    <th scope="row">
      Average
    </th>
    <td>
      9,126
    </td>
    <td>
      0.91
    </td>
    <td>
      341
    </td>
  </tfoot>
</table>