如何防止MCE编辑器水平滚动

发布于 2024-12-20 18:59:14 字数 88 浏览 3 评论 0原文

我正在使用 TinyMCE 文本编辑器,当线条超出宽度时,文本中的文本不会滚动,而是会出现滚动条并且文本水平延伸。如何将文本限制在文本框宽度内并且没有水平滚动条。

I am using TinyMCE text editor and the text within the does not roll over when the line goes beyond the width, rather a scroll bar appears and the text goes on horizontally. How can I confine the text withing the text box width and not have a horizontal scroll bar.

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

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

发布评论

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

评论(2

野味少女 2024-12-27 18:59:14

TinyMCE 中有一个参数,它添加了 CSS 样式,使文本广泛传播,而不会被容器框包裹(添加水平滚动条)。这是布尔值“nowrap”。要使文本包裹在容器框中,请将其设置为 false(这实际上是默认值):

 tinymce.init({ 
        ...
        nowrap : false
        });

There's a param in TinyMCE that adds CSS style which makes text spread wide without wrapping it by the container box (adding horizontal scrollbar). It's boolean "nowrap". To make text wrapped inside the container box set it to false (this actually a default):

 tinymce.init({ 
        ...
        nowrap : false
        });
墟烟 2024-12-27 18:59:14

.tinymce-内容 {
空白:正常;

听起来像是 CSS 问题。您能提供一个工作示例或演示 URL 吗?听起来文本没有换行到其容器中。

此外,文本不会换行,除非它包含空格或连字符(如果这有影响的话)。

.tinymce-content {
white-space: normal;
}

This sounds like a CSS issue. Can you provide a working example or demo URL? It sounds like the text is not wrapping to its container.

Also, text won't wrap unless it contains spaces or hyphens, if that makes a difference.

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