Chapter 4 Bootstrap Tables
4.1 Default Table
For basic styling-light padding and only horizontal dividers-add the base class .table to any <table>. It may seem super redundant, but given the widespread use of tables for other plugins like calendars and date pickers, bootstrap opted to isolate our custom table styles.
4.2 Striped Rows
Use .table-striped to add zebra-striping to any table row within the <tbody>.
Striped tables are styled via the :nth-child CSS selector, which is not available in Internet Explorer 8.
4.3 Bordered Table
Add .table-bordered for borders on all sides of the table and cells.
4.4 Hover Rows
Add .table-hove to enable a hover state on table rows within a <tbody>.
This effect will be displayed on browser only.