Popover for long text without spaces

前端 未结 2 1640
[愿得一人]
[愿得一人] 2020-12-19 03:51

I have in grid in one column long text which should be truncated in grid (ends with ...) but should show whole in popover.

The popover is displaying correctly when t

2条回答
  •  死守一世寂寞
    2020-12-19 04:03

    Since 2012 another solution for word-wrap is:

    overflow-wrap:anywhere;

    More information: Difference between overflow-wrap and word-break?

    Examples of use: https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-wrap

    edit: word-break: break-word is officially deprecated; see https://drafts.csswg.org/css-text-3/#valdef-word-break-break-word

提交回复
热议问题