Tables

Examples and usage guidelines for the Tables component.

Tables

Styled data presentation tables.

# First Last Role
1 Mark Otto Administrator
2 Jacob Thornton Staff
3 Larry Bird Student
Show Code
<div class="table-responsive">
  <table class="table table-bordered table-hover">
    <thead class="table-light">
      <tr>
        <th>#</th>
        <th>First</th>
        <th>Last</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>1</td>
        <td>Mark</td>
        <td>Otto</td>
      </tr>
    </tbody>
  </table>
</div>