There are styles for all parts of tables: table, thead, tfoot.
There are also the full-width, is-striped, is-bordered modifiers to
add styles to the table
| column one | column two | column three | column four |
|---|---|---|---|
| columns one | column two | column three | column four |
| columns one | column two | column three | column four |
| columns one | column two | column three | column four |
| columns one | column two | column three | column four |
| columns one | column two | column three | column four |
<table class="table full-width is-striped is-bordered">
<thead>
<tr>
<th>column one</th>
<th>column two</th>
<th>column three</th>
<th>column four</th>
</tr>
</thead>
<tbody>
<tr>
<td>columns one</td>
<td>column two</td>
<td>column three</td>
<td>column four</td>
</tr>
<tr>
<td>columns one</td>
<td>column two</td>
<td>column three</td>
<td>column four</td>
</tr>
<tr>
<td>columns one</td>
<td>column two</td>
<td>column three</td>
<td>column four</td>
</tr>
<tr>
<td>columns one</td>
<td>column two</td>
<td>column three</td>
<td>column four</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>columns one</td>
<td>column two</td>
<td>column three</td>
<td>column four</td>
</tr>
</tfoot>
</table>