我在设置CKEditor实例的默认字体大小时遇到问题.我试过谷歌搜索,但没有找到任何回答我的问题.
我有一个页面,它接受一个网站的输入.有3个Editor实例,我必须将第一个实例的默认字体大小设置为20到30px.
我已经尝试修改CKEDITOR文件夹中找到的contents.css并更改其中的font-size但它会影响所有3个编辑器实例
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
body
{
/* Font */
font-family: Georgia;
font-size: 12px;
/* Text color */
color: #222;
/* Remove the background color to make it transparent */
background-color: #fff;
}
ol,ul,dl
{
/* IE7: reset rtl list margin. (#7334) */
*margin-right:0px;
/* preserved spaces for rtl list item bullets. (#6249)*/
padding-right:40px;
}
Run Code Online (Sandbox Code Playgroud)
任何人都能弄清楚如何解决这个问题?很感谢任何形式的帮助!..
提前谢谢你们..
mhond