diff options
| author | Mark Otto <[email protected]> | 2013-07-26 21:31:00 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-07-26 21:31:00 -0700 |
| commit | 572174652e905b1cefba10bb623b27d1c5f5e38a (patch) | |
| tree | 805880b1ad0ffc81b6dfc60900541583ed88efff /css.html | |
| parent | 70fa8ef4b04eeacc64d25477f4c5391b9385d4fb (diff) | |
| download | bootstrap-572174652e905b1cefba10bb623b27d1c5f5e38a.tar.xz bootstrap-572174652e905b1cefba10bb623b27d1c5f5e38a.zip | |
another responsivey table
Diffstat (limited to 'css.html')
| -rw-r--r-- | css.html | 78 |
1 files changed, 40 insertions, 38 deletions
@@ -1053,44 +1053,46 @@ For example, <code><section></code> should be wrapped as inline. <h2 id="tables-row-classes">Contextual table classes</h2> <p>Use contextual classes to color table rows or individual cells.</p> - <table class="table table-bordered table-striped"> - <colgroup> - <col class="col-lg-1"> - <col class="col-lg-7"> - </colgroup> - <thead> - <tr> - <th>Class</th> - <th>Description</th> - </tr> - </thead> - <tbody> - <tr> - <td> - <code>.success</code> - </td> - <td>Indicates a successful or positive action</td> - </tr> - <tr> - <td> - <code>.danger</code> - </td> - <td>Indicates a dangerous or potentially negative action</td> - </tr> - <tr> - <td> - <code>.warning</code> - </td> - <td>Indicates a warning that might need attention</td> - </tr> - <tr> - <td> - <code>.active</code> - </td> - <td>Applies the hover color to a particular row or cell</td> - </tr> - </tbody> - </table> + <div class="bs-table-scrollable"> + <table class="table table-bordered table-striped bs-table"> + <colgroup> + <col class="col-lg-1"> + <col class="col-lg-7"> + </colgroup> + <thead> + <tr> + <th>Class</th> + <th>Description</th> + </tr> + </thead> + <tbody> + <tr> + <td> + <code>.success</code> + </td> + <td>Indicates a successful or positive action</td> + </tr> + <tr> + <td> + <code>.danger</code> + </td> + <td>Indicates a dangerous or potentially negative action</td> + </tr> + <tr> + <td> + <code>.warning</code> + </td> + <td>Indicates a warning that might need attention</td> + </tr> + <tr> + <td> + <code>.active</code> + </td> + <td>Applies the hover color to a particular row or cell</td> + </tr> + </tbody> + </table> + </div> <div class="bs-example"> <table class="table"> <thead> |
