用于强制表格换行的 PHP 或 HTML/CSS 解决方案
我有一个充满用户生成文本的表格。 文本跨越 TD 允许的范围,但是如果输入是由长字符串组成的字符串,没有中断字符(空格、破折号等),则会弄乱表格。
例如gggggggggggggggggggggggggggggggggggggggggggggggggggg
我怎样才能使这些字符串也包裹起来?
谢谢。
I have a table filled with user generated text.
The text spans for as much as the TD allows, however if the input is a string made of a long string with no breaking chars (white space, dash etc) it messes up the table.
e.g. ggggggggggggggggggggggggggggggggggggggggggggggggggggg
How can I make it so that those strings wrap as well?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用CSS:
这是一个示例: http://www.jsfiddle.net/QPP8A/ (现在已经过时了,抱歉)
如果您发现这很难应用,您可以使用 PHP 的自动换行功能:
You can use CSS:
Here is an example: http://www.jsfiddle.net/QPP8A/ (now out of date, sorry)
If you find this to hard to apply, you can use PHP's wordwrap function:
尝试这个jquery解决方案,它会在定义的字母数后中断文本:
http://plugins.jquery。 com/project/Word-Break
你可以像这样使用它。
谢谢
try this jquery solution it will break the text after number of letters defined:
http://plugins.jquery.com/project/Word-Break
You can use it like this.
Thanks