2015-06-26 98 views
0

我正在使用CKEditor。當我粘貼數據時,CKEditor添加了一個font元素和colorsize屬性。我想覆蓋這些並保持font-size: 11pxfont-color: #000000Ckeditor默認字體大小,顏色

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"> 

回答

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; 
}