如何增加ckeditor的字体大小

如何增加ckeditor的字体大小

本文介绍了如何增加ckeditor的字体大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想增加富文本编辑器ckeditor的字体大小。



此页面的第一个演示()我正在使用。我想让身体的字体大小为44px; 我发现这个链接。它似乎我可以从这个页面配置我的字体大小。但仍然不能指出哪个配置适合增加字体大小。请帮助我,它的紧迫性。

解决方案

您可以使用setStyles函数:

  CKEDITOR.replace('editor1',{
on:{
instanceReady:function(evt){
evt.editor.document.getBody()。setStyles({color :'black','font-size':'72px'})
}
}
}


i want to increase the font size of the rich text editor "ckeditor".

The first demo of this page(http://ckeditor.com/demo#toolbar) i am using. I want to make the font size of the body to say 44px;

I found this link http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-toolbarGroups . its seems i can configure my font size from this page. But still could not point out which config is suitable to increase the font size

.Please help me ,its urgent.

解决方案

you can use setStyles function :

CKEDITOR.replace('editor1', {
        on: {
          instanceReady: function (evt) {
              evt.editor.document.getBody().setStyles({color: 'black', 'font-size': '72px'})
          }
        }
    }

这篇关于如何增加ckeditor的字体大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 18:01