Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
用户可以以我的特定形式输入文本,我想以表格格式显示该文本。但有时用户输入的行很长,没有空格。所以文本强制表格太宽。
我可以将td元素限制为具有max-width,但随后文本继续流过其他单元格。然后我可以设置overflow: hidden,文本就被截断了:
td
max-width
overflow: hidden
但我需要能够阅读所有内容。即使文本没有空格,有没有办法在表格中换行一长行文本?
尝试将此添加到需要它的元素上的 CSS 文件中:
word-wrap:break-word;
这是在行动:
工作示例