Table
Just add the .table
class to a table
. You can set a table row as highlighted by adding the .is-highlighted
class to a tr
.
# | Region | Population |
---|---|---|
# | Region | Population |
1 | Greater London | 8,173,941 |
2 | West Midlands | 2,736,460 |
3 | Greater Manchester | 2,682,528 |
4 | West Yorkshire | 2,226,058 |
5 | Merseyside | 1,381,189 |
<table class="table">
<thead>
<tr>
<th>#</th>
<th>Region</th>
<th>Population</th>
</tr>
</thead>
<tfoot>
<tr>
<th>#</th>
<th>Region</th>
<th>Population</th>
</tr>
</tfoot>
<tbody>
<tr>
<th>1</th>
<td>Greater London</td>
<td>8,173,941</td>
</tr>
<tr>
<th>2</th>
<td>West Midlands</td>
<td>2,736,460</td>
</tr>
etc...