我正在尝试使用 wenzhixin bootstrap-table 更改表的标题样式。但是 class="info" 不起作用。有一个代码:
<table data-toggle="table" data-height="700" data-classes="table table-striped table-bordered table-hover">
<thead>
<tr class="info"> <!--it doesn't work-->
<th>Item ID</th>
<th>Item Name</th>
<th>Item Price</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<th>Item 0</th>
<th>10</th>
</tr>
</tbody>
</table>
请帮忙。如何更改标题引导表的样式?
PS如果在没有wenzhixin bootstrap-table的情况下使用bootstrap,那么一切正常,但对我来说,wenzhixin bootstrap-table是必要的