How to work with ellipsis in bootstrap responsive table

后端 未结 4 575
故里飘歌
故里飘歌 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 01:58

    With Bootstrap 4, you can use the .text-truncate class. It automatically adds these styles for the relevant components.

    .text-truncate{
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    

    then you can set the max-width for the element to get more reliable output.

提交回复
热议问题