1. Standard table UI
Styles are applied to the <table> tag in the markup. No IDs or Classes necessary.
Be sure to use the <thead> and <tbody> tags.
| header | header | header | header | header | header |
|---|---|---|---|---|---|
| body | body | body | body | body | body |
| body | body | body | body | body | body |
Example code:
<table>
<thead>
<tr>
<th>header</th>
<th>header</th>
<th>header</th>
<th>header</th>
<th>header</th>
<th>header</th>
</tr>
</thead>
<tbody>
<tr>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
</tr>
<tr>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
</tr>
</tbody>
</table>