2

再会。

我在我的页面上使用 ckeditor

代码:

<textarea class="ckeditor" cols="80" name="header" rows="5" id="ursopr" required>
 </textarea>

我有风格:

.about span {
    display: inline-block;
    padding: 5px 20px;
}

.about {
    color: #feffff;
}

.about {
    color: #feffff;
}

.about b {
    font-size: 30px;
    font-weight: normal;
    vertical-align: middle;
}

对于 ckeditor 不删除ulconfig.js 中的类,我添加行:

CKEDITOR.editorConfig = function( config ) {

    config.allowedContent = true;
};

但是在添加这些行之后,我看到在 textarea(iframe ckeditor) 中不包含元素的样式。

但是在带有ckeditor的textarea中我得到:

图像1 图2

请告诉我如何使用ckeditor在textarea中包含元素的样式?

4

2 回答 2

5
config.contentsCss = 'path/to/style.css';

我现在无法测试这个,它来自记忆,所以我希望它有帮助!

请参阅config.contentsCss 文档

于 2013-06-04T15:27:25.003 回答
0

似乎不存在为您的类“ckeditor”定义的css规则。您必须在定义“关于”类规则的同一 css 文件中添加“ckeditor”类。

有些像这样:

.ckeditor
{
color: blue;
}
于 2013-06-04T15:41:41.393 回答