在CKEditor中设置默认图像样式

发布于 2024-11-16 07:46:01 字数 215 浏览 0 评论 0原文

我在自定义 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别挽留 2024-11-23 07:46:01

您可以在此处设置编辑器中的样式

CKEditor 3.x 样式

就个人而言,我使用 contentCss 配置选项来提供样式表参考,如下所示:

CKEDITOR.editorConfig = function(config) {
    config.contentsCss = ['styles.css'];
};

在 styles.css 中您可以执行以下操作:

img { margin: 10px; }

或您想要对图像执行的任何操作。

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:

CKEDITOR.editorConfig = function(config) {
    config.contentsCss = ['styles.css'];
};

And inside styles.css you could do:

img { margin: 10px; }

or whatever you want to do for images.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文