purecss tables

Solutions on MaxInterview for purecss tables by the best coders in the world

showing results for - "purecss tables"
Marco
17 Aug 2016
1<table class="pure-table">
2    <thead>
3        <tr>
4            <th>#</th>
5            <th>Make</th>
6            <th>Model</th>
7            <th>Year</th>
8        </tr>
9    </thead>
10    <tbody>
11        <tr>
12            <td>1</td>
13            <td>Honda</td>
14            <td>Accord</td>
15            <td>2009</td>
16        </tr>
17        <tr>
18            <td>2</td>
19            <td>Toyota</td>
20            <td>Camry</td>
21            <td>2012</td>
22        </tr>
23        <tr>
24            <td>3</td>
25            <td>Hyundai</td>
26            <td>Elantra</td>
27            <td>2010</td>
28        </tr>
29    </tbody>
30</table>