一个问题...我们如何才能在字符串中插入换行符并制作多行字符串以防止固定宽度元素的轴长溢出?

包含问题的示例代码:

<div style="width:100px;">
    Too Long String...
</div>


我需要像这样一个:

<div style="width:100px;">
    Too Long String (Line 1st)<br />
    Too Long String (Line 2nd)<br />
    Too Long String (Line 3rd)<br />
    Too Long String (Line 4th)<br />
    ...
</div>


我应该使用哪种客户端脚本?

最佳答案

使用样式属性“ word-wrap:break-word”,您将获得多行字符串,且不会溢出。

问候

关于php - 通过插入换行符防止文本溢出,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7146332/

10-11 14:17