ckEditor设置默认字体大小

1、在config.js里设置 

config.fontSize_defaultLabel =  '16px' ;

2、有人发现在config.js中保存的没用,那么小编找到了另外一种方式

: 在contents.css中找到body块

在.cke_editable中设置默认字体,行高,

.cke_editable
{
	line-height: 1.6em;
font-family: "Arial";
font-size: 16px; color: #666; }
config.fontSize_defaultLabel =  '16px' ;

猜你喜欢

转载自blog.csdn.net/zhang18330699274/article/details/79738241
今日推荐