bootstrap table-hover

来源:2-17 表格

web_東

2018-07-12 22:25

table-hover怎么对th无效

写回答 关注

1回答

  • 俊崽爱枫妞
    2018-07-13 10:28:43

    用<thead></thead>标签吧th包裹

    <table class="table table-hover">

       <thead>

         <tr>

           <th>表格标题</th>

           <th>表格标题</th>

           <th>表格标题</th>

         </tr>

       </thead>

       <tbody>

         <tr>

           <td>表格单元格</td>

           <td>表格单元格</td>

           <td>表格单元格</td>

         </tr>

    </tbody>

    </table>


玩转Bootstrap(基础)

告诉你使用Bootstrap,并且能够独立定制出适合自己的Bootstrap

314544 学习 · 2275 问题

查看课程

相似问题