Bootstrap Table
Basic Table
| # | First | Last | Handle | 
|---|---|---|---|
| 1 | Mark | Otto | @mdo | 
| 2 | Jacob | Thornton | @fat | 
| 3 | Larry | the Bird | 
<table class="table">
  <thead>
    <tr>
      <th scope="col">#</th>
      <th scope="col">First</th>
      <th scope="col">Last</th>
      <th scope="col">Handle</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">1</th>
      <td>Mark</td>
      <td>Otto</td>
      <td>@mdo</td>
    </tr>
    <tr>
      <th scope="row">2</th>
      <td>Jacob</td>
      <td>Thornton</td>
      <td>@fat</td>
    </tr>
    <tr>
      <th scope="row">3</th>
      <td>Larry</td>
      <td>the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>Basic Table Dark
You can also invert the colors—with light text on dark backgrounds—with .table-dark.
| # | First | Last | Handle | 
|---|---|---|---|
| 1 | Mark | Otto | @mdo | 
| 2 | Jacob | Thornton | @fat | 
| 3 | Larry | the Bird | 
<table class="table table-dark">
    <thead>
      <tr>
        <th scope="col">#</th>
        <th scope="col">First</th>
        <th scope="col">Last</th>
        <th scope="col">Handle</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <th scope="row">1</th>
        <td>Mark</td>
        <td>Otto</td>
        <td>@mdo</td>
      </tr>
      <tr>
        <th scope="row">2</th>
        <td>Jacob</td>
        <td>Thornton</td>
        <td>@fat</td>
      </tr>
      <tr>
        <th scope="row">3</th>
        <td>Larry</td>
        <td>the Bird</td>
        <td>@twitter</td>
      </tr>
    </tbody>
  </table>
                                        Striped rows
Use .table-striped to add zebra-striping to any table row within the  Add .table-bordered for borders on all sides of the table and cells. Add .table-bordered for borders on all sides of the table and cells. Add .table-hover to enable a hover state on table rows within a  Use contextual classes to color table rows or individual cells. Create responsive tables by wrapping any .
                            
                                                
                                                  
                                        
                                                     
                                                
                                                
                                                  # 
                                                    First 
                                                    Last 
                                                    Handle 
                                                  
                                                     
                                                  1 
                                                    Mark 
                                                    Otto 
                                                    @mdo 
                                                  
                                                     
                                                  2 
                                                    Jacob 
                                                    Thornton 
                                                    @fat 
                                                  
                                                     
                                                
                                            3 
                                                    Larry 
                                                    the Bird 
                                                    @twitter 
                                                  <table class="table table-striped">
    <thead>
      <tr>
        <th scope="col">#</th>
        <th scope="col">First</th>
        <th scope="col">Last</th>
        <th scope="col">Handle</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <th scope="row">1</th>
        <td>Mark</td>
        <td>Otto</td>
        <td>@mdo</td>
      </tr>
      <tr>
        <th scope="row">2</th>
        <td>Jacob</td>
        <td>Thornton</td>
        <td>@fat</td>
      </tr>
      <tr>
        <th scope="row">3</th>
        <td>Larry</td>
        <td>the Bird</td>
        <td>@twitter</td>
      </tr>
    </tbody>
  </table>
                                        Bordered table
                            
                                                
                                                  
                                        
                                                     
                                                
                                                
                                                  # 
                                                    First 
                                                    Last 
                                                    Handle 
                                                  
                                                     
                                                  1 
                                                    Mark 
                                                    Otto 
                                                    @mdo 
                                                  
                                                     
                                                  2 
                                                    Jacob 
                                                    Thornton 
                                                    @fat 
                                                  
                                                     
                                                
                                            3 
                                                    Larry the Bird 
                                                    @twitter 
                                                  <table class="table table-bordered">
    <thead>
      <tr>
        <th scope="col">#</th>
        <th scope="col">First</th>
        <th scope="col">Last</th>
        <th scope="col">Handle</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <th scope="row">1</th>
        <td>Mark</td>
        <td>Otto</td>
        <td>@mdo</td>
      </tr>
      <tr>
        <th scope="row">2</th>
        <td>Jacob</td>
        <td>Thornton</td>
        <td>@fat</td>
      </tr>
      <tr>
        <th scope="row">3</th>
        <td colspan="2">Larry the Bird</td>
        <td>@twitter</td>
      </tr>
    </tbody>
  </table>
                                        Borderless table
                            
                                                
                                                  
                                        
                                                     
                                                
                                                
                                                  # 
                                                    First 
                                                    Last 
                                                    Handle 
                                                  
                                                     
                                                  1 
                                                    Mark 
                                                    Otto 
                                                    @mdo 
                                                  
                                                     
                                                  2 
                                                    Jacob 
                                                    Thornton 
                                                    @fat 
                                                  
                                                     
                                                
                                            3 
                                                    Larry the Bird 
                                                    @twitter 
                                                  <table class="table table-borderless">
    <thead>
      <tr>
        <th scope="col">#</th>
        <th scope="col">First</th>
        <th scope="col">Last</th>
        <th scope="col">Handle</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <th scope="row">1</th>
        <td>Mark</td>
        <td>Otto</td>
        <td>@mdo</td>
      </tr>
      <tr>
        <th scope="row">2</th>
        <td>Jacob</td>
        <td>Thornton</td>
        <td>@fat</td>
      </tr>
      <tr>
        <th scope="row">3</th>
        <td colspan="2">Larry the Bird</td>
        <td>@twitter</td>
      </tr>
    </tbody>
  </table>
                                        Hoverable rows
                            <tbody>.
                                                
                                                  
                                        
                                                     
                                                
                                                
                                                  # 
                                                    First 
                                                    Last 
                                                    Handle 
                                                  
                                                     
                                                  1 
                                                    Mark 
                                                    Otto 
                                                    @mdo 
                                                  
                                                     
                                                  2 
                                                    Jacob 
                                                    Thornton 
                                                    @fat 
                                                  
                                                     
                                                
                                            3 
                                                    Larry the Bird 
                                                    @twitter 
                                                  <table class="table table-hover">
    <thead>
      <tr>
        <th scope="col">#</th>
        <th scope="col">First</th>
        <th scope="col">Last</th>
        <th scope="col">Handle</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <th scope="row">1</th>
        <td>Mark</td>
        <td>Otto</td>
        <td>@mdo</td>
      </tr>
      <tr>
        <th scope="row">2</th>
        <td>Jacob</td>
        <td>Thornton</td>
        <td>@fat</td>
      </tr>
      <tr>
        <th scope="row">3</th>
        <td colspan="2">Larry the Bird</td>
        <td>@twitter</td>
      </tr>
    </tbody>
  </table>
                                        Contextual classes
                            
                                                
                                                  
                                        
                                                     
                                                
                                                
                                                  Class 
                                                    Heading 
                                                    Heading 
                                                  
                                                     
                                                  Active 
                                                    Cell 
                                                    Cell 
                                                  
                                                     
                                            
                                                  
                                                  Default 
                                                    Cell 
                                                    Cell 
                                                  
                                                     
                                                  Primary 
                                                    Cell 
                                                    Cell 
                                                  
                                                     
                                                  Secondary 
                                                    Cell 
                                                    Cell 
                                                  
                                                     
                                                  Success 
                                                    Cell 
                                                    Cell 
                                                  
                                                     
                                                  Danger 
                                                    Cell 
                                                    Cell 
                                                  
                                                     
                                                  Warning 
                                                    Cell 
                                                    Cell 
                                                  
                                                     
                                                  Info 
                                                    Cell 
                                                    Cell 
                                                  
                                                     
                                                  Light 
                                                    Cell 
                                                    Cell 
                                                  
                                                     
                                                
                                            Dark 
                                                    Cell 
                                                    Cell 
                                                  <!-- On rows -->
<tr class="table-active">...</tr>
<tr class="table-primary">...</tr>
<tr class="table-secondary">...</tr>
<tr class="table-success">...</tr>
<tr class="table-danger">...</tr>
<tr class="table-warning">...</tr>
<tr class="table-info">...</tr>
<tr class="table-light">...</tr>
<tr class="table-dark">...</tr>
<!-- On cells (`td` or `th`) -->
<tr>
    <td class="table-active">...</td>
    
    <td class="table-primary">...</td>
    <td class="table-secondary">...</td>
    <td class="table-success">...</td>
    <td class="table-danger">...</td>
    <td class="table-warning">...</td>
    <td class="table-info">...</td>
    <td class="table-light">...</td>
    <td class="table-dark">...</td>
</tr>
                                        Responsive tables
                                .table with .table-responsive{-sm|-md|-lg|-xl}, making the table scroll horizontally at each max-width breakpoint of up to (but not including) 576px, 768px, 992px, and 1120px, respectively.
 
             
                                         
                                     
                                    