0
如何使用ckeditor插件「Div編輯區」更改編輯區背景顏色?更改編輯區背景顏色
隨着「I幀編輯區域」插件,我用contentsCss
能改變主體部分是這樣,它工作正常:
CKEDITOR.replace('Description',
{
uiColor: '#a7bdea',
width: 'auto',
height: '150',
enterMode: CKEDITOR.ENTER_BR,
shiftEnterMode: CKEDITOR.ENTER_P,
contentsCss : body{ background : red}
});
但似乎忽略的CKEditor與contentsCss
格面積的編輯。有任何想法嗎?
的['config.contentsCss'](http://docs.ckeditor.com/#! /api/CKEDITOR.config-cfg-contentsCss)是一個字符串(或字符串數組)。這些字符串是樣式表文件的URL。這就是CKEditor忽略你的設置的原因。 – Reinmar