jQuery DataTable overflow and text-wrapping issues

后端 未结 10 1641
遇见更好的自我
遇见更好的自我 2020-12-07 18:42

I have the following DataTable (full-width css class sets width = 100%)

LOB&
10条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-07 19:26

    The following CSS declaration works for me:

    .td-limit {
        max-width: 70px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    

提交回复
热议问题