再会。
我在我的页面上使用 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 不删除ul
config.js 中的类,我添加行:
CKEDITOR.editorConfig = function( config ) {
config.allowedContent = true;
};
但是在添加这些行之后,我看到在 textarea(iframe ckeditor) 中不包含元素的样式。
但是在带有ckeditor的textarea中我得到:
请告诉我如何使用ckeditor在textarea中包含元素的样式?