Bootstrap还为表格的行元素<tr>提供了五种不同的类名,每种类名控制了行的不同背景颜色,具体说明如下表所示:示例: 123 <tr class="active"> <td>…</td></tr> 实现悬浮状态,需要在<table>标签上加入table-hover类 12345678910111213141516 <table class="table table-hover table-bordered"> <thead> <tr> <th>类名</th> <th>描述</th> </tr> </thead> <tbody> <tr class="active"> <td>.active</td> <td>表示当前活动的信息</td> </tr> </tbody></table> </body></html> 赞微海报分享
近期评论