如何修复内容大小的数据表?
th, td { white-space: nowrap; }
div.dataTables_wrapper {
width: 800px;
margin: 0 auto;
}
我尝试使用w hite-space:nowrap; 但不能正常工作。 请检查我附带的屏幕截图。
答案 0 :(得分:-1)
让我们试着解决你的问题;
您是否已停用 DataTables' autoWidth
?尝试启用它。
(默认启用,因此删除false也会起作用)
$('#example').dataTable( {
"autoWidth": true
} );