Css Ckeditor默认字体大小、颜色

Css Ckeditor默认字体大小、颜色,css,ckeditor,fckeditor,Css,Ckeditor,Fckeditor,我正在使用CKEditor。粘贴数据时,CKEditor会添加一个font元素,该元素具有color和size属性。我想覆盖这些,并保持字体大小:11px和字体颜色:#000000 这是检查字体颜色和大小的测试数据 增加了字体大小+1 需要覆盖 <font color="#000000" size="11"> 要设置默认字体大小,您需要自定义CKEditor的配置, 为此,请查看链接:您可以编辑您的内容。css body {/* Font */ font-family: Ari

我正在使用CKEditor。粘贴数据时,CKEditor会添加一个
font
元素,该元素具有
color
size
属性。我想覆盖这些,并保持
字体大小:11px
字体颜色:#000000

这是检查字体颜色和大小的测试数据
增加了字体大小+1
需要覆盖

<font color="#000000"  size="11">

要设置默认字体大小,您需要自定义CKEditor的配置,
为此,请查看链接:

您可以编辑您的内容。css

body
{/* Font */
font-family: Arial, Verdana, sans-serif;
font-size: 12px;/* Text color */
color: #00649d;/* Remove the background color to make it transparent */
background-color: #fff;
}