【发布时间】:2016-03-24 06:03:26
【问题描述】:
我正在尝试使用 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>
请帮忙。如何更改标题引导表的样式?
附:如果使用 bootstrap 而不使用 wenzhixin bootstrap-table,那么一切正常,但对我来说这是必要的 wenzhixin bootstrap-table
【问题讨论】:
标签: bootstrap-table tableheader