CSSkel styles tables with consistent padding, borders, and text alignment, ensuring a clean and readable presentation.
Tables (table
) have the following styles:
th
and td
elements have padding of 12px 15px
and left-aligned text.1px
solid border using --border-color-softer
.<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>John Doe</td>
<td>30</td>
<td>New York</td>
</tr>
<tr>
<td>Jane Smith</td>
<td>25</td>
<td>London</td>
</tr>
</tbody>
</table>
Name | Age | Location |
---|---|---|
John Doe | 30 | New York |
Jane Smith | 25 | London |