如何更改Bootstrap Datatable头列宽度

时间:2015-10-19 08:53:16

标签: css twitter-bootstrap

我想更改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> 

如何更改特定列的宽度。 请帮忙

1 个答案:

答案 0 :(得分:0)

在初始化数据表时将数据表的“bAutoWidth”属性设置为false,并像上面那样设置列的宽度。