roobie
Version:
A collection of CSS classes to keep you writing business logic in your HTML. Easily build maintainable web & mobile applications with 100s of pre-built CSS classes at your fingertips.
100 lines (97 loc) • 2.21 kB
Markdown
# Table
Easily customizable table styles.
## Basic
<div class="row row-spacer">
<table class="table">
<tr>
<th>Name</th>
<th>Color</th>
<th>Description</th>
</tr>
<tr>
<td>George</td>
<td>Red</td>
<td>A kind fellow.</td>
</tr>
<tr>
<td>Lisa</td>
<td>Green</td>
<td>The best gardener.</td>
</tr>
<tr>
<td>Billy</td>
<td>Yellow</td>
<td>Space flight specialist.</td>
</tr>
</table>
<table class="table br">
<tr>
<th>Name</th>
<th>Color</th>
<th>Description</th>
</tr>
<tr>
<td>George</td>
<td>Red</td>
<td>A kind fellow.</td>
</tr>
<tr>
<td>Lisa</td>
<td>Green</td>
<td>The best gardener.</td>
</tr>
<tr>
<td>Billy</td>
<td>Yellow</td>
<td>Space flight specialist.</td>
</tr>
</table>
</div>
```html
<div class="row row-spacer">
<table class="table">
<tr>
<th>Name</th>
<th>Color</th>
<th>Description</th>
</tr>
<tr>
<td>George</td>
<td>Red</td>
<td>A kind fellow.</td>
</tr>
<tr>
<td>Lisa</td>
<td>Green</td>
<td>The best gardener.</td>
</tr>
<tr>
<td>Billy</td>
<td>Yellow</td>
<td>Space flight specialist.</td>
</tr>
</table>
<table class="table br">
<tr>
<th>Name</th>
<th>Color</th>
<th>Description</th>
</tr>
<tr>
<td>George</td>
<td>Red</td>
<td>A kind fellow.</td>
</tr>
<tr>
<td>Lisa</td>
<td>Green</td>
<td>The best gardener.</td>
</tr>
<tr>
<td>Billy</td>
<td>Yellow</td>
<td>Space flight specialist.</td>
</tr>
</table>
</div>
```