div 中的自动换行?

发布于 2024-10-22 09:47:45 字数 185 浏览 1 评论 0原文

我正在尝试将文本包装在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

停顿的约定 2024-10-29 09:47:45

http://www.longren.org/2006/ 09/27/wrapping-text-inside-pre-tags/

“长行是由于使用 pre html 标签造成的。pre 标签保留文本块中的空格和换行符。非常适合显示片段然而,有些代码行相当长,会超出页面,这正是我的侧边栏被推到 IE 页面底部的原因。”

修复:

pre {
  white-space: pre-wrap;       /* css-3 */
  white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
  white-space: -pre-wrap;      /* Opera 4-6 */
  white-space: -o-pre-wrap;    /* Opera 7 */
  word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

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:

pre {
  white-space: pre-wrap;       /* css-3 */
  white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
  white-space: -pre-wrap;      /* Opera 4-6 */
  white-space: -o-pre-wrap;    /* Opera 7 */
  word-wrap: break-word;       /* Internet Explorer 5.5+ */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文