Style Guide - Tables
Table Basics
Tables are a semantic way to display tabular data. AutoZonePro.com has a few preset classes to quickly change a table theme:
- Default Theme
- Dark Header Theme
- Hover Theme
- Scroll Theme (Semi-Responsive)
- Stacked Theme (Responsive)
<table>
<thead>
<tr>
<th>Table Heading 1</th>
...
</tr>
</thead>
<tfoot>
<tr>
<td colspan='100%' class="text-center">Table Footer</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Table Data 1</td>
...
</tr>
</tbody>
</table>
Default Theme
Below is an example of what a default (unstyled) table will look like on AutoZonePro.com.
Table Heading 1 | Table Heading 2 | Table Heading 3 |
---|---|---|
Table Footer 1 | ||
Table Data 1 | Table Data 2 | Table Data 3 |
Table Data 1 | Table Data 2 | Table Data 3 |
Table Data 1 | Table Data 2 | Table Data 3 |
Table Data 1 | Table Data 2 | Table Data 3 |