CK编辑器-元素多种样式

发布于 2024-11-26 17:19:14 字数 517 浏览 1 评论 0原文

不知道你们中有没有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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文