| Name |
Favorite Color |
| Bob |
Yellow |
| Michelle |
Purple |
<table>
<tbody><tr>
<th>Name</th>
<th>Favorite Color</th>
</tr>
<tr>
<td>Bob</td>
<td>Yellow</td>
</tr>
<tr>
<td>Michelle</td>
<td>Purple</td>
</tr>
</tbody></table>
Zebra Striping
| Name |
Favorite Color |
| Bob |
Yellow |
| Michelle |
Purple |
<table class="table-zebra">
<tbody><tr>
<th>Name</th>
<th>Favorite Color</th>
</tr>
<tr>
<td>Bob</td>
<td>Yellow</td>
</tr>
<tr>
<td>Michelle</td>
<td>Purple</td>
</tr>
</tbody></table>
Condensed
| Name |
Favorite Color |
| Bob |
Yellow |
| Michelle |
Purple |
<table class="table-condensed">
<tbody><tr>
<th>Name</th>
<th>Favorite Color</th>
</tr>
<tr>
<td>Bob</td>
<td>Yellow</td>
</tr>
<tr>
<td>Michelle</td>
<td>Purple</td>
</tr>
</tbody></table>
Small
| Name |
Favorite Color |
| Bob |
Yellow |
| Michelle |
Purple |
<table class="table-small">
<tbody><tr>
<th>Name</th>
<th>Favorite Color</th>
</tr>
<tr>
<td>Bob</td>
<td>Yellow</td>
</tr>
<tr>
<td>Michelle</td>
<td>Purple</td>
</tr>
</tbody></table>
Rows
| Name |
Favorite Color |
| Bob |
Yellow |
| Michelle |
Purple |
<table class="table-rows">
<tbody><tr>
<th>Name</th>
<th>Favorite Color</th>
</tr>
<tr>
<td>Bob</td>
<td>Yellow</td>
</tr>
<tr>
<td>Michelle</td>
<td>Purple</td>
</tr>
</tbody></table>
Columns
| Name |
Favorite Color |
| Bob |
Yellow |
| Michelle |
Purple |
<table class="table-columns">
<tbody><tr>
<th>Name</th>
<th>Favorite Color</th>
</tr>
<tr>
<td>Bob</td>
<td>Yellow</td>
</tr>
<tr>
<td>Michelle</td>
<td>Purple</td>
</tr>
</tbody></table>
No Borders
| Name |
Favorite Color |
| Bob |
Yellow |
| Michelle |
Purple |
<table class="table-noborder">
<tbody><tr>
<th>Name</th>
<th>Favorite Color</th>
</tr>
<tr>
<td>Bob</td>
<td>Yellow</td>
</tr>
<tr>
<td>Michelle</td>
<td>Purple</td>
</tr>
</tbody></table>