// Added stripes helper for table element
// Added min helper for th and td elements
<table class="stripes">
<thead>
<tr>
<th class="min">Header</th>
<th>Header</th>
</tr>
</thead>
<tbody>
<tr>
<td class="min">Cell</td>
<td>Cell</td>
</tr>
<tr>
<td class="min">Cell</td>
<td>Cell</td>
</tr>
<tr>
<td class="min">Cell</td>
<td>Cell</td>
</tr>
</tbody>
<tfoot>
<tr>
<th class="min">Footer</th>
<th>Footer</th>
</tr>
</tfoot>
</table>
// Added scrollable table using fixed helper for thead and tfoot elements
<div class="small-height scroll">
<table>
<thead class="fixed">
<tr>
<th>Header</th>
<th>Header</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<td>Cell</td>
<td>Cell</td>
</tr>
</tbody>
<tfoot class="fixed">
<tr>
<th>Footer</th>
<th>Footer</th>
</tr>
</tfoot>
</table>
</div>