Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在自定义 CMS 中使用 CKEditor 和 CKFinder。用户在文章中上传和插入照片,效果非常好。缺点是默认的图片样式是margin/padding:0px,所以左对齐或者右对齐时图片显得拥挤。
有没有办法在 CKEditor 中设置默认的图片样式,这样当用户插入图片时(无论是通过 CKFinder 还是直接输入 HTML/Source),都会添加一个 padding:10px 属性作为样式?
您可以在此处在编辑器中设置样式
CKEditor 3.x 样式
就个人而言,我使用 contentsCss 配置选项来提供样式表参考,如下所示:
CKEDITOR.editorConfig = function(config) { config.contentsCss = ['styles.css']; };
在 styles.css 中你可以这样做:
img { margin: 10px; }
或者你想为图像做的任何事情。