<thead>
<tr>
<th scope="col">#</th>
- <th scope="col">First Name</th>
- <th scope="col">Last Name</th>
- <th scope="col">Username</th>
+ <th scope="col">First</th>
+ <th scope="col">Last</th>
+ <th scope="col">Handle</th>
</tr>
</thead>
<tbody>
</tr>
<tr>
<th scope="row">2</th>
- <td>Mark</td>
- <td>Otto</td>
- <td>@TwBootstrap</td>
- </tr>
- <tr>
- <th scope="row">3</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
- <th scope="row">4</th>
+ <th scope="row">3</th>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</table>
{% endexample %}
+`.table-borderless` can also be used on dark tables.
+
{% example html %}
<table class="table table-borderless table-dark">
<thead>
<tr>
<th scope="col">#</th>
- <th scope="col">First Name</th>
- <th scope="col">Last Name</th>
- <th scope="col">Username</th>
+ <th scope="col">First</th>
+ <th scope="col">Last</th>
+ <th scope="col">Handle</th>
</tr>
</thead>
<tbody>
</tr>
<tr>
<th scope="row">2</th>
- <td>Mark</td>
- <td>Otto</td>
- <td>@TwBootstrap</td>
- </tr>
- <tr>
- <th scope="row">3</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
- <th scope="row">4</th>
+ <th scope="row">3</th>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>