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

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


我尝试使用空格:nowrap;但不起作用。
请检查我所附的屏幕截图。

最佳答案

让我们尝试解决您的问题;

是否禁用了DataTables的autoWidth?尝试启用它。
(默认设置为启用,因此删除false也会起作用)

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

10-06 08:00