Cckeditor 强制自定义样式属性到特定元素
我想强制所有 p 元素使用内联 style 属性。我该怎么做? 我尝试这样做:
CKEDITOR.config.format_p= { element : 'p', attributes : { style : 'padding:10px;' } }
该行被执行并出现在 dom 中,但没有真正改变。
I would like to force the inline style attributes for all p elements. How can I do this?
I've tried to do this:
CKEDITOR.config.format_p= { element : 'p', attributes : { style : 'padding:10px;' } }
This line is executed and appears in the dom, but nothing really changed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
config.format_p 是当 "在 样式 组合框中选择段落”。如果您想更改所有 p 元素,只需添加您自己的 自定义 css 文件放入 CKEditor 主体中。
config.format_p is the style that will be applied when "Paragraph" selected in the Styles combobox. If you want to change all p elements just add your own custom css file into the CKEditor body.