Basic Table

Modifiers

  • .table-sm - Small table
  • .table-lg - Large table
  • .table-striped - Zebra striped table
  • .table-bordered - Borders between rows
  • .table-hover - Highlight table row on hover

Example

Point of interest Distance
Stortorget 1 km
Sundstorget 2 km
Knutpunkten 2 km
Note: This is example data.
<table class="table-striped table-hover">
    <thead>
        <tr>
            <th>Point of interest</th>
            <th>Distance</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Stortorget</td>
            <td>1 km</td>
        </tr>
        <tr>
            <td>Sundstorget</td>
            <td>2 km</td>
        </tr>
        <tr>
            <td>Knutpunkten</td>
            <td>2 km</td>
        </tr>
    </tbody>
    <tfoot>
        <tr>
            <td colspan="3"><small>Note: This is example data.</small></td>
        </tr>
    </tfoot>
</table>
Source file: ~/source/sass/component/table/table.scss