长词打破布局。 HTML 输入的 UTF-8 格式怎么样?
想象一下,如果我在文本中有类似 [a href="this-is-a-very-big-link"]this is ok[/a] (用 [ 和 ] 切换 < 和 >)...并且这也是一个非常大的词。
我需要将第二个案例切成两行...
请注意,自动换行会杀死链接,因此它对于解决此类问题没有用处。
有什么想法吗?
Imagine if I have in a text something like [a href="this-is-a-very-big-link"]this is ok[/a] (switch < and > with [ and ])... And also this-is-a-very-big-word.
I need to cut the second case in two lines...
Notice wordwrap kills the link so it is not useful for solving this sort of problem.
Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在CSS中:
In CSS:
决定使用 www.php.net/wordwrap 上找到的breakLongWords()函数,
我知道使用word-wrap:break-word;会更好,但是当我现在尝试时,我发现 Firefox 还没有实现它,所以我想我必须将它保留在服务器端......
Decided to use the breakLongWords() function found on the www.php.net/wordwrap
I know using word-wrap: break-word; would be better, but as I tried right now I saw that Firefox doesn't implement it yet, so I guess I'll have to keep it on the server-side...