Table

A styled table for displaying tabular data.

Usage

NameStatusRole
Alice JohnsonActiveDesigner
Bob SmithAwayEngineer
Carol DavisActiveProduct Manager
<table class="zui-table">
<thead class="zui-table-header">
  <tr class="zui-table-row">
    <th class="zui-table-head">Name</th>
    <th class="zui-table-head">Status</th>
    <th class="zui-table-head">Role</th>
  </tr>
</thead>
<tbody class="zui-table-body">
  <tr class="zui-table-row">
    <td class="zui-table-cell">Alice Johnson</td>
    <td class="zui-table-cell">Active</td>
    <td class="zui-table-cell">Designer</td>
  </tr>
  <tr class="zui-table-row">
    <td class="zui-table-cell">Bob Smith</td>
    <td class="zui-table-cell">Away</td>
    <td class="zui-table-cell">Engineer</td>
  </tr>
  <tr class="zui-table-row">
    <td class="zui-table-cell">Carol Davis</td>
    <td class="zui-table-cell">Active</td>
    <td class="zui-table-cell">Product Manager</td>
  </tr>
</tbody>
</table>
<table class="zui-table">
<thead class="zui-table-header">
  <tr class="zui-table-row">
    <th class="zui-table-head">Name</th>
    <th class="zui-table-head">Status</th>
    <th class="zui-table-head">Role</th>
  </tr>
</thead>
<tbody class="zui-table-body">
  <tr class="zui-table-row">
    <td class="zui-table-cell">Alice Johnson</td>
    <td class="zui-table-cell">Active</td>
    <td class="zui-table-cell">Designer</td>
  </tr>
</tbody>
</table>

With Caption

Team members and their current status.
NameStatusRole
Alice JohnsonActiveDesigner
Bob SmithAwayEngineer
Carol DavisActiveProduct Manager
<table class="zui-table">
<caption class="zui-table-caption">Team members and their current status.</caption>
<thead class="zui-table-header">
  <tr class="zui-table-row">
    <th class="zui-table-head">Name</th>
    <th class="zui-table-head">Status</th>
    <th class="zui-table-head">Role</th>
  </tr>
</thead>
<tbody class="zui-table-body">
  <tr class="zui-table-row">
    <td class="zui-table-cell">Alice Johnson</td>
    <td class="zui-table-cell">Active</td>
    <td class="zui-table-cell">Designer</td>
  </tr>
  <tr class="zui-table-row">
    <td class="zui-table-cell">Bob Smith</td>
    <td class="zui-table-cell">Away</td>
    <td class="zui-table-cell">Engineer</td>
  </tr>
  <tr class="zui-table-row">
    <td class="zui-table-cell">Carol Davis</td>
    <td class="zui-table-cell">Active</td>
    <td class="zui-table-cell">Product Manager</td>
  </tr>
</tbody>
</table>
NameStatusRole
Alice JohnsonActiveDesigner
Bob SmithAwayEngineer
Carol DavisActiveProduct Manager
Total members3
<table class="zui-table">
<thead class="zui-table-header">
  <tr class="zui-table-row">
    <th class="zui-table-head">Name</th>
    <th class="zui-table-head">Status</th>
    <th class="zui-table-head">Role</th>
  </tr>
</thead>
<tbody class="zui-table-body">
  <tr class="zui-table-row">
    <td class="zui-table-cell">Alice Johnson</td>
    <td class="zui-table-cell">Active</td>
    <td class="zui-table-cell">Designer</td>
  </tr>
  <tr class="zui-table-row">
    <td class="zui-table-cell">Bob Smith</td>
    <td class="zui-table-cell">Away</td>
    <td class="zui-table-cell">Engineer</td>
  </tr>
  <tr class="zui-table-row">
    <td class="zui-table-cell">Carol Davis</td>
    <td class="zui-table-cell">Active</td>
    <td class="zui-table-cell">Product Manager</td>
  </tr>
</tbody>
<tfoot class="zui-table-footer">
  <tr class="zui-table-row">
    <td class="zui-table-cell" colspan="2">Total members</td>
    <td class="zui-table-cell">3</td>
  </tr>
</tfoot>
</table>

Theme

Copy this CSS to your project's theme.css file: