Use these configuration settings:
Initial height and width:
config.height = '111px'; config.width = 111;
Is it possible to resize the CkEditor window:
config.resize_enabled = false; //false says not resizable
You can allow resizing, but control the direction (vertical or horizontal) and the minimum and maximum values.
config.resize_dir = 'vertical'; //Can use (both, vertical, and horizontal)
Height:
config.resize_maxHeight = 111; config.resize_minHeight = 111;
width:
config.resize_maxWidth = 111; config.resize_minWidth = 111;
The CkEditor API for configuration settings is located here:
API CKEDITOR.config
It tells you the allowed values ββand formatting for each setting.
source share