How to set the height of CKEditor 5 (Classic Editor)

后端 未结 17 1347
清歌不尽
清歌不尽 2020-12-01 08:41

In CKEditor 4 to change the editor height there was a configuration option: config.height.

How do I change the height of CKEditor 5? (the Classic Editor)

17条回答
  •  醉梦人生
    2020-12-01 09:37

    Add this to your stylesheet:

    .ck-editor__editable {
        min-height: 200px !important;
    }
    

提交回复
热议问题