将@ font-face添加到CKEditor

时间:2009-09-09 08:33:52

标签: css3 ckeditor font-face

我想在CKEditor字体组合框中添加一个字体。这本身很容易。但是,我想添加的字体是我使用@ font-face CSS3属性的自定义字体。 我设法做到了,但编辑器本身并没有显示自定义字体。如果我只是使用CKEditor创建的html并在页面上的div中显示它,那么自定义字体就会显示出来。 我还想以某种方式将@ font-face属性添加到CKEditor的文本区域,以便我的用户可以在键入时看到自定义字体。

这可能吗?

1 个答案:

答案 0 :(得分:38)

将以下行添加到ckeditor / config.js

config.contentsCss = 'fonts.css';
//the next line add the new font to the combobox in CKEditor
config.font_names = 'fontnametodisplay/yourfontname;' + config.font_names;

其中fonts.css具有@ font-face属性:

@font-face {  
    font-family: "yourfontname";  
    src: url( ../fonts/font.eot ); /* IE */  
    src: local("realfontname"), url("../fonts/font.TTF") format("truetype"); /*non-IE*/  
}