March 2017
Intermediate to advanced
821 pages
18h 21m
English
A new class for tables has been introduced, named table-inverse. This is just another variation of table in terms of looks.
Here is how to create an inverse table. Place this code at the end of the container element of index.html:
<table class="table table-inverse">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Ramesh</td>
<td>Kumar</td>
<td>@ramesh</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Sudheep</td>
<td>Sahoo</td>
<td>@sudheep</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Abhinash</td>
<td>Singh</td>
<td>@abhi</td>
</tr>
</tbody>
</table>
<hr>Here is how the table looks:
Read now
Unlock full access