Can I use CKEditor without a toolbar?

后端 未结 8 1524
迷失自我
迷失自我 2020-12-14 07:35

(Possible duplicate: CKEditor - No toolbars)

I\'d like to create a CKEditor instance without a toolbar. I tried defining an empty toolbar to use in the instance\'s c

8条回答
  •  不知归路
    2020-12-14 07:49

    In CKEditor 5 the easiest way without changing configuration or editor behaviour is to hide the toolbar using CSS:

    .ck.ck-editor__top {
      display: none;
    }
    

提交回复
热议问题