我正在使用Datatable
在jsp页面上显示用户详细信息:
在我的表格中,我有这么多专栏,因为标题文字有多行,请找到下面的图片:
我想以单行显示标题文字: 必需的标题文本:
有没有办法让我可以强行设置标题文本?
答案 0 :(得分:2)
只需设置white-space
属性:
table thead th {
white-space: nowrap
}
如果您只想定位dataTables表
table.dataTable thead th {
white-space: nowrap
}