CKeditor 内容风格与前端设计相同
我目前正在做一个设计,其中 CKeditor 管理 960px 宽容器中的内容。那么该框中的内容分为两列,即两个 div,其样式为 div:first-child 和 div:nth-child(2) ..我想要的是让 CKeditor 将这些设置为 div 的 pr 。默认并将它们设置为我的前端设计中的样式 - 这可能吗?
I am currently making a design where a CKeditor is managing the content in a 960px wide container. Well the content inside that box is in two columns, which is just two divs, that is styled with div:first-child and div:nth-child(2) .. What I want is to make the CKeditor have these to div's pr. default and have them styled as in my frontend design - is that possible??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以编辑
/contents.css
以反映编辑器中的最终外观,也可以使用CKEDITOR.config.contentsCss = '/path/to/editors 为编辑器加载不同的 CSS 文件.css';
。默认内容作为您正在使用的 CMS 的一部分可能更容易实现。You can either edit
/contents.css
to reflect the final look within the editor, or load in a different CSS file for editors usingCKEDITOR.config.contentsCss = '/path/to/editors.css';
. Default content is probably easier to implement as part of the CMS you're using.