Tables

Таблицы используют базовый класс `.table`, semantic table markup и дополнительные элементы: `.table-caption`, `.table-head`, `.table-body`, `.table-foot`.

Basic table

Devices list
Device Status IP Ping Actions
Kitchen Light Online 192.168.1.21 12 ms
Hall Sensor Degraded 192.168.1.34 88 ms
Garage Relay Offline
Total: 3 devices
Tables HTML
<table class="table">
  <caption class="table-caption">Devices list</caption>
  <thead class="table-head">
    <tr class="table-row">
      <th scope="col">Device</th>
      <th scope="col">Status</th>
    </tr>
  </thead>
  <tbody class="table-body">
    <tr class="table-row">
      <td>Kitchen Light</td>
      <td><span class="badge badge-success">Online</span></td>
    </tr>
  </tbody>
</table>