<table>
<caption>...</caption>
<thead>
<tr><th>...</th><th>...</th></tr>
</thead>
<tbody>
<tr><td>...</td><td>...</td></tr>
<tr><td>...</td><td>...</td></tr>
</tbody>
</table>
Table - Bordered
Add the table--bordered
class to the table element.
<table class="table--bordered">...</table>
Table - Borderless
Add the table--borderless
class to the table element.
<table class="table--borderless">...</table>
Table - Striped
Add the table--striped
class to the table element.
<table class="table--striped">...</table>
Table - Condensed
Add the table--condensed
class to the table element.
<table class="table--condensed">...</table>
Table - Combined
Any of the above classes can be combined on a single table for a combined effect.
<table class="table--striped table--condensed table--bordered">...</table>