[转载]FCKeditor编辑器中设置默认文本行高和字体大小
- JavaScript
- 2012-09-17
- 97热度
- 0评论
[转载]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;
}