我想更改Bootstrap DataTable头列的宽度。 我尝试了多种解决方案,但它不起作用。
<div class="frame" style="height: 750px; overflow: auto; padding: 7px 20px 20px 20px; ">
<table id="example" class="table table-striped table-bordered" cellspacing="0" width="100%">
<thead>
<tr>
<th>First Name</th>
<th> Last Name</th>
<th>Organization Name</th>
<th>Address</th>
<th>Country</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
我尝试更改第二列宽度,但是工作
<th style="width: 60px"> Last Name</th>
如何更改特定列的宽度。 请帮忙
答案 0 :(得分:0)
在初始化数据表时将数据表的“bAutoWidth”属性设置为false,并像上面那样设置列的宽度。