How to work with ellipsis in bootstrap responsive table

后端 未结 4 570
故里飘歌
故里飘歌 2020-12-04 01:14

In a responsive table text-overflow:ellipsis is not working when the data increases in the th (as the col-xs-2 width increases).

4条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-04 02:12

    Another suggestion for bootstrap 4:

    Github Docs

    .table.table-ellipsis tbody td {
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }
    

提交回复
热议问题