table的class屬性:
table 會修改一些簡單的樣式;table-striped 隔行換色;table-bordered 給表格添加邊框;table-hover 給每一行添加一個hover狀態;table-condensed 讓表格更加緊湊;table-responsive 這個屬性是將表格包裹在一個class為table-responsive的div里,當屏幕尺寸過于小時會出現滾動條。代碼如下:
<div class="container"> <div class="row"> <div class="table-responsive"> <table class="table table-striped table-bordered table-hover table-condensed"> <thead> <tr> <th>星期一</th> <th>星期二</th> <th>星期三</th> <th>星期四</th> <th>星期五</th> <th>星期六</th> </tr> </thead> <tbody> <tr> <td>語文</td> <td>數學</td> <td>英語</td> ……另外還有一些關于顏色的屬性 也就是在tr、td等的class屬性(以tr為例):
<tr class="active"></tr><tr class="success"></tr><tr class="warning"></tr><tr class="danger"></tr><tr class="info"></tr>新聞熱點
疑難解答