码迷,mamicode.com
首页 > 其他好文 > 详细

ckeditor富文本解决文段首行缩进问题

时间:2021-05-24 14:29:34      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:fse   text   问题   tor   插件   试验   details   修改   edit   

有个项目用ckeditor富文本插件了,客户要有首行缩进按钮,

最开始用的官网上的document模式,这个模式从work直接拷贝过来的格式很友好,但我们的项目居然用了

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

这个东西去除样式,这会导致ol,li等缩进都没有,改这个东西太麻烦了,用回了article模式

这个模式缩进是给<p>标签加‘margin-left: 40px;’

这样会导致整段文字都缩进,用户体验很不友好

查了网上的资料,把模板改成 ‘text-indent: 2em;‘ 就可以了。

下边贴下那位仁兄的博客,我这边也转载记录下

https://blog.csdn.net/qq_36303853/article/details/114670864

1.打开ckeditor.js文件,使用ctrl+f进行搜索。

d.config.indentOffset||40  将40修改为2
d.config.indentUnit||"px"  将px修改为em
b.getComputedStyle("direction"))?"margin-left":"margin-right"}  将"margin-left":"margin-right"修改为"text-indent":"text-indent"

2.他说还要关闭过滤器,这个没试验,我反正是加上了

ckeditor/config.js 配置文件中修改

config.allowedContent = true;

清除缓存,完美解决

ckeditor富文本解决文段首行缩进问题

标签:fse   text   问题   tor   插件   试验   details   修改   edit   

原文地址:https://www.cnblogs.com/moerjiana/p/14780156.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!