在数据表中包装标题文本:

时间:2017-09-05 12:45:15

标签: css datatables

我正在使用Datatable在jsp页面上显示用户详细信息: 在我的表格中,我有这么多专栏,因为标题文字有多行,请找到下面的图片:

enter image description here

我想以单行显示标题文字: 必需的标题文本:

enter image description here

有没有办法让我可以强行设置标题文本?

1 个答案:

答案 0 :(得分:2)

只需设置white-space属性:

table thead th {
  white-space: nowrap
}

如果您只想定位dataTables表

table.dataTable thead th {
  white-space: nowrap
}