我花了好几个小时试图最大化ckeditor 4.0.1(修订版d02739be4b)的textarea字体大小没有用。我做了所有技巧和调整:
1-编辑skeditor / skin.moono / editor.css
2-编辑ckeditor / contents.css
从属性窗口更改字体大小
在所有这些尝试之后,字体仍然很小。
答案 0 :(得分:0)
在CKEditor 5中也有类似的问题(但是通过更改文本区域的高度),我终于能够根据此问题解决: How to set the height of CKEditor 5 (Classic Editor) 检查文本区域后,我将以下行添加到css:
.ck-editor__editable_inline {
min-height: 400px;
}
我希望这会有所帮助。