为ckeditor编辑器添加行距功能,添加之后的效果如下:
具体做法是添加插件:在目录“\ckeditor\plugins”下添加插件目录“lineheight”,目录“\ckeditor\plugins\lineheight”下的文件截图如下:
然后需要对\ckeditor\config.js文件进行修改,即添加行距插件:
config.extraPlugins += (config.extraPlugins ? ',lineheight' : 'lineheight');
不要忘记“config.toolbar_Full = 。。。”ckeditor的工具栏也要添加哦
转自:http://www.csccd.net/Info_3832.html