Table
.table is for html table.
Applicable Elements
table
Basic Usage
| Name | Price | Description |
|---|---|---|
| Tuna | $12 | Fresh tuna slices |
| Salmon | $10 | Rich, fatty salmon |
| Octopus | $8 | Chewy and savory |
| Shrimp | $9 | Sweet and tender |
<table class="table card" style="width:auto; padding:0; background: white;">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Price</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tuna</td>
<td>$12</td>
<td>Fresh tuna slices</td>
</tr>
<tr>
<td>Salmon</td>
<td>$10</td>
<td>Rich, fatty salmon</td>
</tr>
<tr>
<td>Octopus</td>
<td>$8</td>
<td>Chewy and savory</td>
</tr>
<tr>
<td>Shrimp</td>
<td>$9</td>
<td>Sweet and tender</td>
</tr>
</tbody>
<caption>
price of sashimi
</caption>
</table>