在CKEditor中设置默认图像样式
我在自定义 CMS 中使用 CKEditor 和 CKFinder。用户在文章中上传和插入照片,效果几乎很完美。缺点是默认的图像样式是margin/padding:0px,所以左对齐或右对齐时图像会显得拥挤。
有没有办法在 CKEditor 中设置默认图像样式,以便当用户插入图像时(无论是通过 CKFinder 还是直接输入 HTML/Source),添加 padding:10px 属性作为样式?
I'm using CKEditor with CKFinder in a custom CMS. Users upload and insert photos in articles and that works almost beautifully. The downside is that the default image style is margin/padding:0px, so the images appear crowded when left or right aligned.
Is there a way to set up a default image style in CKEditor, so that when a user inserts an image (whether through CKFinder or entering direct HTML/Source), a padding:10px attribute is added as a style?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在此处设置编辑器中的样式
CKEditor 3.x 样式
就个人而言,我使用 contentCss 配置选项来提供样式表参考,如下所示:
在 styles.css 中您可以执行以下操作:
或您想要对图像执行的任何操作。
You can set the styles within the editor here
CKEditor 3.x Styles
Personally, I use the contentsCss configuration option to provide a stylesheet reference, like so:
And inside styles.css you could do:
or whatever you want to do for images.