DataTables fixed headers misaligned with columns in wide tables

前端 未结 21 1588
悲&欢浪女
悲&欢浪女 2020-11-30 19:23

Problem

When using the sScrollX, sScrollXInner and/or sScrollY to achieve a fixed header table with its inner content scroll

21条回答
  •  渐次进展
    2020-11-30 20:10

    try this, the following code solved my problem

    table.dataTable tbody th,table.dataTable tbody td 
    {
         white-space: nowrap;
    } 
    

    for more information pls refer Here.

提交回复
热议问题