如何设置CKEditor 5的高度

Suh*_*ayb 3 ckeditor shadow-dom angular ckeditor5

使用CKeditor角度分量如何设置编辑器高度?

根据文档,可以通过将编辑器样式设置为:

 min-height: 500px !important;
Run Code Online (Sandbox Code Playgroud)

但这不起作用!

Mac*_*ski 10

如果将其添加到全局样式表中,则应该可以进行以下操作:

.ck-editor__editable_inline {
    min-height: 500px !important;
}
Run Code Online (Sandbox Code Playgroud)

但是,如果要通过进行样式设置,则component.css需要输入以下内容:

:host ::ng-deep .ck-editor__editable_inline {
    min-height: 500px !important;
}
Run Code Online (Sandbox Code Playgroud)