我想使用
保持输入文本的格式,但显示的文本跨越其父标签
的边界

发布于 2024-08-10 06:45:03 字数 299 浏览 10 评论 0原文

 中的文本超出了其父级 
的边界。如何解决这个问题呢?

据说可以缩短预格式化文本中的行长,但是如何做到呢?

我看过

<%# DataBinder.Eval(Container.DataItem, "Comments")
               .ToString().Replace("\n", "<br />") %>

是c#吗?我是一名 PHP 程序员。

The text in <pre></pre> steps beyond the boundary of its parental <div></div>. How to solve this problem?

It is said that the line lengths in the preformatted text can be shortened, but how to do it?

I have seen

<%# DataBinder.Eval(Container.DataItem, "Comments")
               .ToString().Replace("\n", "<br />") %>

Is it c#? I am a PHP programmer.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

复古式 2024-08-17 06:45:03

您可以使用 CSS 使文本换行:

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+ */
}

如果您根本不希望更改文本格式,则此 CSS 将使用滚动条使所有文本都可见:

pre {
  width: 100%;
  overflow: auto;
}

You can use CSS to make the text wrap:

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+ */
}

If you don't want the text formatting changed at all, this CSS will use scrollbars to make all of the text viewable anyway:

pre {
  width: 100%;
  overflow: auto;
}
<逆流佳人身旁 2024-08-17 06:45:03

尝试添加CSS:

pre {
  width: 100%;
  overflow: auto;
}

Try adding CSS:

pre {
  width: 100%;
  overflow: auto;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文