Tables
# First Name Tables
1 Michael Are formatted like this
2 Lucille Do you like them?
3 Success
4 Danger
5 Warning
6 Active

Striped & condensed table with alternating backgrounds

# First Name Tables
1 Michael This one is bordered and condensed
2 Lucille Do you still like it?
<table class="table table-hover">
    <thead>
    <tr>
        <th>#</th>
        <th>First Name</th>
        <th>Tables</th>
    </tr>
    </thead>
    <tbody>
    <tr>
        <td>1</td>
        <td>Michael</td>
        <td>Are formatted like this</td>
    </tr>
    <tr>
        <td>2</td>
        <td>Lucille</td>
        <td>Do you like them?</td>
    </tr>
    <tr class="success">
        <td>3</td>
        <td>Success</td>
        <td></td>
    </tr>
    <tr class="danger">
        <td>4</td>
        <td>Danger</td>
        <td></td>
    </tr>
    <tr class="warning">
        <td>5</td>
        <td>Warning</td>
        <td></td>
    </tr>
    <tr class="active">
        <td>6</td>
        <td>Active</td>
        <td></td>
    </tr>
    </tbody>
</table>
<h3>Striped &amp; condensed table with alternating backgrounds</h3>
<table class="table table-striped table-bordered table-condensed">
    <thead>
    <tr>
        <th>#</th>
        <th>First Name</th>
        <th>Tables</th>
    </tr>
    </thead>
    <tbody>
    <tr>
        <td>1</td>
        <td>Michael</td>
        <td>This one is bordered and condensed</td>
    </tr>
    <tr>
        <td>2</td>
        <td>Lucille</td>
        <td>Do you still like it?</td>
    </tr>
    </tbody>
</table>