text-overflow: ellipsis in table-cell without width

后端 未结 7 791
后悔当初
后悔当初 2020-12-04 13:18

I\'m trying to achieve a responsive table width text-overflow: ellipsis; in the middle cell that looks like this:

| Button 1 | A one-lined text th

7条回答
  •  悲&欢浪女
    2020-12-04 13:54

    HTML

    
        
             A very looooooooooooooooooooooooooooooong string
        
    
    

    CSS

    td {
        position: relative;
    }
    
    .ellipsis {
        /*Here is the trick:*/
        position: absolute;
        width: 100%;
        /*End of the trick*/
    
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    

提交回复
热议问题