Ckeditor默认字体大小,颜色

时间:2015-06-26 08:02:53

标签: css ckeditor fckeditor

我正在使用CKEditor。粘贴数据时,CKEditor会添加font元素,其中包含colorsize个属性。我想覆盖这些并保留font-size: 11pxfont-color: #000000

This is Test Data to check Font color and Size
Added Font size +1

<font color="#1f497d" face="Calibri" size="3">
<font color="#000000"  size="11">

需要覆盖

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

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

您可以编辑您的contents.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;
}