FCKeditor编辑器中设置默认文本行高和字体大小
这个行高可以自己设置 找到editorcss ck_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; } |