1

我正在使用带有内联编辑的 CKEditor 4。我想为出现的 CKEditor 工具栏设置自定义高度。我环顾四周,找到了解决方案

config.height = 300;
config.width = 550;

我在config.js文件中写了上面两行。但可悲的是,它对我不起作用。

有任何想法吗?还是内联编辑不支持自定义高度?

编辑 :

我在我的 js 中也试过这个

editor.resize( 900, 300 );

但没有运气

4

1 回答 1

1

只需按照 Zee 在评论区的建议使用换行符 '/'。

例如:

  config.toolbarGroups = [
        { name: 'clipboard',   groups: [ 'clipboard', 'undo' ] },
        { name: 'editing',     groups: [ 'find', 'selection', 'spellchecker', 'basicstyles', 'cleanup'] },
        '/',
        { name: 'paragraph',   groups: [ 'list', 'indent', 'blocks', 'align' ] },
        { name: 'links' },
        ...
]

换行符会将按钮分成两行。

于 2013-04-10T08:28:04.220 回答