Word-wrap in an HTML table

后端 未结 25 3243
温柔的废话
温柔的废话 2020-11-22 02:45

I\'ve been using word-wrap: break-word to wrap text in divs and spans. However, it doesn\'t seem to work in table cells. I have a tabl

25条回答
  •  萌比男神i
    2020-11-22 03:34

    Change your code

    word-wrap: break-word;
    

    to

    word-break:break-all;
    

    Example

    longtextwithoutspacelongtextwithoutspace Long Content, Long Content, Long Content, Long Content, Long Content, Long Content, Long Content, Long Content, Long Content, Long Content
    Short Content

提交回复
热议问题