Alternate
This table has a slightly different styling then the default table styling. The even rows get a background-color, the odds stay white.
<div class="o-table o-table--alternate-rows">
<table class="o-table__content">
<thead class="o-table__header">
<tr class="o-table__header-row">
<th class="o-table__title-4-12 ">Name</th>
<th class="o-table__title-4-12 ">Occupation</th>
<th class="o-table__title-4-12 ">Date of birth</th>
</tr>
</thead>
<tbody class="o-table__body">
<tr class="o-table__row">
<td class="o-table__col-4-12">John Doe</td>
<td class="o-table__col-4-12">Teacher</td>
<td class="o-table__col-4-12">01/12/1991</td>
</tr>
<tr class="o-table__row">
<td class="o-table__col-4-12">John Doe</td>
<td class="o-table__col-4-12">Teacher</td>
<td class="o-table__col-4-12">01/12/1991</td>
</tr>
<tr class="o-table__row">
<td class="o-table__col-4-12">John Doe</td>
<td class="o-table__col-4-12">Teacher</td>
<td class="o-table__col-4-12">01/12/1991</td>
</tr>
<tr class="o-table__row">
<td class="o-table__col-4-12">John Doe</td>
<td class="o-table__col-4-12">Teacher</td>
<td class="o-table__col-4-12">01/12/1991</td>
</tr>
<tr class="o-table__row">
<td class="o-table__col-4-12">John Doe</td>
<td class="o-table__col-4-12">Teacher</td>
<td class="o-table__col-4-12">01/12/1991</td>
</tr>
</tbody>
</table>
</div>