Tables

CSSkel styles tables with consistent padding, borders, and text alignment, ensuring a clean and readable presentation.

Table Styling

Tables (table) have the following styles:

<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