div 中的自动换行?
我正在尝试将文本包装在 div 中。有办法做到吗?
这是有问题的代码:
<div width="700"><pre><p> " . $texts . "</p></pre></div>
有任何线索吗?
I am trying to wrap text in a div. Any way to do that?
Here's the code in question:
<div width="700"><pre><p> " . $texts . "</p></pre></div>
Any clue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://www.longren.org/2006/ 09/27/wrapping-text-inside-pre-tags/
“长行是由于使用 pre html 标签造成的。pre 标签保留文本块中的空格和换行符。非常适合显示片段然而,有些代码行相当长,会超出页面,这正是我的侧边栏被推到 IE 页面底部的原因。”
修复:
http://www.longren.org/2006/09/27/wrapping-text-inside-pre-tags/
"The long lines are caused by use of the pre html tag. The pre tag preserves spaces and line breaks in a chunk of text. Perfect for displaying snippets of code. However, some lines of code are quite long and will run off the page. This is exactly why my sidebar was getting pushed to the bottom of the page in IE."
To fix: