使用CKeditor角度分量如何设置编辑器高度?
根据文档,可以通过将编辑器样式设置为:
min-height: 500px !important;
但这不起作用!
答案 0 :(得分:5)
如果将其添加到全局样式表中,则应该可以进行以下操作:
.ck-editor__editable_inline {
min-height: 500px !important;
}
但是,如果您想通过component.css
进行样式设置,则需要输入以下内容:
:host ::ng-deep .ck-editor__editable_inline {
min-height: 500px !important;
}