我尝试在ckeditor中更改默认选择的格式 我将它添加到styles.js
中CKEDITOR.stylesSet.add('mystyles', [
{name: 'My styly style', element: 'p', styles: {'color': 'blue'}},
]);
当我的ck加载实例时,我会默认选择在编辑器中单击以更改文本时的格式。
任何人都有答案
感谢
答案 0 :(得分:0)
尝试在config.js中添加此行:
config.format_p = { element: 'p', attributes: { 'class': 'color_blue' } };
**别忘了添加(在你的css中)
.color_blue{
color:blue;
}