text overflow ellipsis: avoid word break

后端 未结 3 490
闹比i
闹比i 2020-11-30 15:18

In my webpage I have a div with fixed width and using the following css:

width: 200px; 
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
         


        
3条回答
  •  孤独总比滥情好
    2020-11-30 15:39

    I’m afraid it’s impossible. There was once text-overflow: ellipsis-word, which would do just this, but it was not implemented in browsers and it was removed from CSS3 drafts.

提交回复
热议问题