问答详情
源自:2-17 表格

bootstrap table-hover

table-hover怎么对th无效

提问者:web_東 2018-07-12 22:25

个回答

  • 俊崽爱枫妞
    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>