CKEditor 4 - How to set default font?

前端 未结 3 1409
一个人的身影
一个人的身影 2021-01-06 00:05

I use CKEditor 4 and I want to set default font. I added \"font_defaultLabel\" with my font choice but it doesn\'t work ...

I found this solution on the Internet but

3条回答
  •  时光说笑
    2021-01-06 00:39

    Simply place this below your original CKEDITOR JS, and change the font-size to whatever you like. This works for me, hope it does for you!

    CKEDITOR.on( 'instanceReady', function( ev ) {
     ev.editor.setData('­');
    });
    

提交回复
热议问题