Hi
Example for my problem:
I have css for whole site. In it border for td = 0.
In ckeditor there is no opportinity to set border for td, so I create other css and use it via config.contentsCss.
So when I editing text via ckeditor, td shows the borders. But when I include saved html in site, of course there are no borders for td.
It would be greate to resolve the problem kinda this:
<div id=html_ckeditor_created>
...HTML...
</div>
and include in css for whole site this:
#html_ckeditor_created{
@include "the same path I wrote in config.contentsCss"
}
But I have tried it, it doesn't work.
Please help :-(
It seams like I figured it
It seams like I figured it out. I should use config.bodyId and create css with elements #ThisID class{}. Then in view html mode use
<div ID=ThisID>
HTML was created by ckeditor
</div>