我想自定义一个Bootstrap表。我无法添加tbody {}和tr {},因为正在使用多个表,因此它会影响所有表。该表也在div内。
答案 0 :(得分:0)
将id分配给要修改的表,然后添加CSS代码!
答案 1 :(得分:0)
添加一个表并为其指定id
:
<table class="table table-hover table-condensed" id="YOUR_TABLE_ID">
<tbody>
</tbody>
</table>
根据id
添加仅适用于表的css,例如:
#YOUR_TABLE_ID {
cursor: pointer;
}
#YOUR_TABLE_ID > tbody > tr > td {
word-wrap: break-word;
word-break: break-all;
table-layout: fixed;
}