CK编辑器-元素多种样式
不知道你们中有没有CK编辑专家呢? CK 编辑器的设置方式是,当我向选定的文本添加多个样式时,它会将文本包装在带有样式属性的 span 标记中 - 但它会为每个样式使用一个新标记 - 这通常会导致样式被丢失的。
例如,如果我想将以下样式应用于所选文本 - 粗体、字体大小:22px 和颜色:红色 - CK 编辑器将输出以下 HTML:
<span style="color: rgb(255, 0, 0);"><span style="font-size: 22px;"><strong>Testing</strong></span></span>
这不能正确应用样式。有谁知道如何将其设置为输出如下:
<span style="color:rgb(255,0,0);font-size: 22px;font-weight:bold">Testing</span>
谢谢。
I wonder if any of you are CK editor experts? The way that CK editor is set up, when I add multiple styles to a selection of text, it will wrap the text in span tags with style attributes- but it will use a new tag for each style- which often results in the styles being lost.
For example, if I wanted to apply the following styles to a selection of text- bold, font-size:22px and color:red - CK editor would output the following HTML:
<span style="color: rgb(255, 0, 0);"><span style="font-size: 22px;"><strong>Testing</strong></span></span>
Which doesn't apply the styles properly. Does anyone know how to set it up to output like:
<span style="color:rgb(255,0,0);font-size: 22px;font-weight:bold">Testing</span>
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论