How to prevent fckeditor to resize in Chrome browser?
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.
I'm not sure about the specifics of fckeditor but usually you would need to add the following to your css:
textarea {resize: none}
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.
精彩评论