NOKSTRAP guide

Examples
Default styling
Header 1 Header 2
Row col 1 Row col 2
Row col 1 Row col 2
.Table--schedule
schedule layout
Header 1 Header 2
Row col 1 Row col 2
Row col 1 Row col 2
.Table--inline
no padding
Header 1 Header 2
Row col 1 Row col 2
Row col 1 Row col 2
.Table--inverted
bold body content instead of header
Header 1 Header 2
Row col 1 Row col 2
Row col 1 Row col 2
.Table--compact
less padding between cells
Header 1 Header 2
Row col 1 Row col 2
Row col 1 Row col 2
.Table--striped
striped table rows
Header 1 Header 2
Row col 1 Row col 2
Row col 1 Row col 2
.Table--bordered
bordered table
Header 1 Header 2
Row col 1 Row col 2
Row col 1 Row col 2
Markup
<table class="Table [modifier class]">
<thead>
<tr>
    <th>Header 1</th>
    <th>Header 2</th>
</tr>
</thead>
<tbody>
<tr>
    <td>Row col 1</td>
    <td>Row col 2</td>
</tr>
<tr>
    <td>Row col 1</td>
    <td>Row col 2</td>
</tr>
</tbody>
</table>
Source: src/components/molecules/table.less, line 5