Inverse tables
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...