我想在标签<中设置默认颜色ckeditor中的强大> 。
我试图设置
<strong style='color:rgb(255, 140, 0)'>
但是当您更改粗体元素的颜色时,ckeditor会创建一个涉及强度的跨度,并且仅显示强烈的颜色
<span style="color:#008000"><strong style='color:rgb(255, 140, 0)'></span>
如何将默认颜色放在粗体元素中?
答案 0 :(得分:0)
您最好的选择是使用外部CSS:
/* default color */
strong {
color: rgb(255, 140, 0);
}
/*
if parent span has inline style with color definition,
inherit it instead
*/
span[style*="color"] > strong {
color: inherit;
}