Datatable中重叠的列标题文本

时间:2018-08-22 12:36:38

标签: datatables

我使用datatable来显示数据,并且表有14列

但是我在显示表标题数据时遇到了问题。它重叠而不是两行显示

enter image description here

我这样创建表

src

我如何分两行完成

1 个答案:

答案 0 :(得分:0)

<table id="tbl" class="table" cellspacing="0" width="100%" style="word-wrap:break-word;
              table-layout: fixed;">
    <thead>
        <tr>
           <th style="word-wrap: break-word;">Column Name</th>
        </tr>
    </thead>
</table>

overfow:隐藏即可解决问题;-)