bootstrap class for table hover code example
Example: bootstrap table
<table class="table">
<thead>
<tr> <th>Head 1</th> <th>Head 2</th> <th>Head 3</th> </tr>
</thead>
<tbody>
<tr> <td>cell</td> <td>cell</td> <td>cell</td> </tr>
<tr> <td>cell</td> <td>cell</td> <td>cell</td> </tr>
</tbody>
<tfoot>
<tr> <th>Footer 1</th> <th>Footer 2</th> <th>Footer 3</th> </tr>
</tfoot>
</table>