如何设置CKEditor 5的高度

时间:2018-09-24 18:04:51

标签: angular ckeditor shadow-dom ckeditor5

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

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

 min-height: 500px !important;

但这不起作用!

1 个答案:

答案 0 :(得分:5)

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

.ck-editor__editable_inline {
    min-height: 500px !important;
}

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

:host ::ng-deep .ck-editor__editable_inline {
    min-height: 500px !important;
}