如何修复jquery数据表单元格宽度?

时间:2015-01-20 11:15:39

标签: jquery css jquery-datatables

如何修复内容大小的数据表?

th, td { white-space: nowrap; }
div.dataTables_wrapper {
    width: 800px;
    margin: 0 auto;
} 

我尝试使用w hite-space:nowrap; 但不能正常工作。 请检查我附带的屏幕截图。

enter image description here

1 个答案:

答案 0 :(得分:-1)

让我们试着解决你的问题;

您是否已停用 DataTables' autoWidth?尝试启用它。 (默认启用,因此删除false也会起作用)

$('#example').dataTable( {
  "autoWidth": true
} );