如何防止fckeditor在Chrome浏览器中调整大小?

发布于 2024-10-19 22:55:30 字数 119 浏览 6 评论 0原文

我在asp.net 中使用了fckeditor。当用户在 Chrome 中打开包含 fckeditor 的页面时。用户可以调整 fckeditor 文本区域的大小。我想防止这种情况。ieuser 应该无法调整文本区域的大小。

I have use fckeditor in asp.net. When user open the page containing fckeditor in Chrome. User can resize the text area of fckeditor. I want to prevent this.i.e.user should un-enable to resize the text area.

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

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

发布评论

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

评论(2

一枫情书 2024-10-26 22:55:30

我不确定 fckeditor 的具体细节,但通常您需要将以下内容添加到您的 css 中:

textarea {resize: none}

I'm not sure about the specifics of fckeditor but usually you would need to add the following to your css:

textarea {resize: none}
绝不服输 2024-10-26 22:55:30

这是禁用编辑器调整大小功能的选项: http:// docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.resize_enabled

但是,Chrome 向所有文本区域添加了自己的调整大小功能,因此要禁用此功能,请使用 Phil 的建议。

This is an option for disabling the resizing feature of editor: http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.resize_enabled

But, Chrome adds its own resizing feature to all textareas, so to disable this, use Phil's suggestion.

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