A data table component
Properties#
Name | Description |
---|
.table-group |
The tab container component
|
Features#
default#
Product Name | Manufacturer | Price |
---|
Gift Box | Alpha Inc. | $1.5 |
Table Sheet | Beta Manufacture | $9 |
Notebook | Cheer co. | $3 |
<table class="table-group">
<thead>
<tr>
<th>Product Name</th>
<th>Manufacturer</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Gift Box</td>
<td>Alpha Inc.</td>
<td>$1.5</td>
</tr>
<tr>
<td>Table Sheet</td>
<td>Beta Manufacture</td>
<td>$9</td>
</tr>
<tr>
<td>Notebook</td>
<td>Cheer co.</td>
<td>$3</td>
</tr>
</tbody>
</table>
outline#
Style with horizontal lines
Product Name | Manufacturer | Price |
---|
Gift Box | Alpha Inc. | $1.5 |
Table Sheet | Beta Manufacture | $9 |
Notebook | Cheer co. | $3 |
.table-group {
td,
th {
@apply border-b border-solid border-gray-300;
}
thead th {
@apply border-b-2 border-solid border-gray-300;
}
}