ckeditor 文本区域的默认样式或类
有谁知道我如何在 ckeditor 对象中创建我的文本区域,使用类或自定义样式,以便我可以向用户显示类似于网站中呈现的内容?
谢谢
所以我在配置对象中使用 bodyClass: 'class' ,我使用 firebug 并看到 iframe 主体应用了我的类,但它既没有从我的 CSS 中获取类属性,也没有从 content.css 中获取类属性(ckeditor )...
好吧,我能够做到这一点,向对象添加一个事件,如下所示:
editor.on('instanceReady', function(){
$('#'+divname).find('iframe:first').contents().find('body').css({
'background-color':'#000000',
'font-family':'arial',
'font-size':'12pt',
'color':'#cdcdcd'
});
});
如果有人有真正的解决方案,我认为 bodyClass 应该是它,我会很乐意更改我的代码。
谢谢
Does anyone know how i can make my textarea in a ckeditor object, use a class or custom style so i can show to the user something similar to what is getting rendered in the site?
Thanx
So i'm using bodyClass: 'class' in the config object, i use firebug and see the iframe body has my class applied, but it doesn't get the classes properties neither from my CSS, nor from contents.css (ckeditor)...
Well i was able to do it, adding an event to the object like this:
editor.on('instanceReady', function(){
$('#'+divname).find('iframe:first').contents().find('body').css({
'background-color':'#000000',
'font-family':'arial',
'font-size':'12pt',
'color':'#cdcdcd'
});
});
if anyone has the real solution, i think bodyClass should be it, i will gladly change my code.
Thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需编辑位于 content.css 的 css 文件 - 将 .cke_editable 类编辑为适合您需要的内容。 24/7 工作
Simply edit the css file located at contents.css - edit the .cke_editable class to whatever suits your needs. Works 24/7