[Bootstrap]全局样式(三)
表格 1、基本类 .table {width/margin-bottom/} {padding/border-top} e.g.:<table class="table"> <tr><th>表头</th></tr> <tr><td>内容</td></tr> </table> 2、条纹表格 .table-striped {nth-of-type(odd):background-color} e.g.:<table class="table table-striped"> <tr><th>表头</th></tr> <tr><td>内容</td></tr> </table> 3、边框表格 .table-border {border} e.g.:<table class="table table-border"> <tr><th>表头</th></tr> <tr><td>内容</td></tr> </table> 4、鼠标悬停 .table-hover {background-color} e.g.:<table class="table table-hover"> <tr><th>表头</th></tr> <tr><td>内容</td></tr> </table> 5、紧缩的表格 .table-condesed e.g.:<table class="table table