How to prevent fckeditor to resize in Chrome browser?

941 Views Asked by At

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.

2

There are 2 best solutions below

0
On

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

textarea {resize: none}
2
On

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.