我在使用 CK4 时遇到问题,并且无法在样式下拉列表中获取标题样式。
.css 应该由后端和前端共享,并使用#page 作为 css-id
有什么方法可以告诉下拉列表解析带有#page-prefix 的标题。
我正在使用
CKEDITOR.config.bodyId = 'page';
和CSS
.cke_editable {
}
#page {
/* works - editor area goes black..
font-family:Arial;
margin:10px;
font-family:Arial;
background-color:#000;
font-size: 10px;
color:#fff;
}
#page h1 {
/* works in editor-area, but not dropdown */
font-family: Verdana;
color:#999;
}
.cke_editable h2 {
/* same as h1.. */
font-family:Arial;
color:#f00;
font-size:16px;
background-color:#999;
}
h3 {
/* work BOTH in editor and style shows in dropdown. */
color:#0f0;
}