FCKeditor编辑器中设置默认文本行高和字体大小

这个行高可以自己设置 找到\editor\css\fck_editorarea.
在 body
{
background-color: #ffffff;
padding: 5px 5px 5px 5px;
margin: 0px;
line-height:150%;
} 中 我加了一行控制line-height:150%; 行边距的就可以了.

如果要改变默认字体大小,可以修改

body, td
{
font-family: Arial, Verdana, sans-serif;
font-size: 14px;
}

原文地址:https://www.cnblogs.com/superfeeling/p/2162317.html