Description
A styled table.
Attributes
n/a
Demo
| Name | Order | Price |
|---|---|---|
| Item One | #001 | $3 |
| Item Two | #002 | $6 |
| Item Three | #003 | $9 |
| Item Four | #004 | $12 |
| Item Five | #005 | $15 |
| Table Footer 1 | Table Footer 2 | Table Footer 3 |
Source
[code lang=”html”] [ssc] <table><caption>The table</caption>
<tbody>
<tr>
<th>Name</th>
<th>Order</th>
<th>Price</th>
</tr>
<tr>
<td>Item One</td>
<td>#001</td>
<td>$3</td>
</tr>
<tr class="alt">
<td>Item Two</td>
<td>#002</td>
<td>$6</td>
</tr>
<tr>
<td>Item Three</td>
<td>#003</td>
<td>$9</td>
</tr>
<tr class="alt">
<td>Item Four</td>
<td>#004</td>
<td>$12</td>
</tr>
<tr>
<td>Item Five</td>
<td>#005</td>
<td>$15</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Table Footer 1</td>
<td>Table Footer 2</td>
<td>Table Footer 3</td>
</tr>
</tfoot>
</table>
[/ssc] [/code]


