如何防止fckeditor在Chrome浏览器中调整大小?
我在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定 fckeditor 的具体细节,但通常您需要将以下内容添加到您的 css 中:
I'm not sure about the specifics of fckeditor but usually you would need to add the following to your css:
这是禁用编辑器调整大小功能的选项: 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.