Hi, I use CKEditor in fullpage mode and I have dummy content:
<html> <head> <title></title> </head> <body> <div class="foo1"></div> <div class="foo2"></div> <div class="foo3"></div> <p>Hello there</p> </body> </html>
while toggling source and wysiwyg the code remains the same, but when I save the content and reload the page, suddenly the code is transformed into
<html> <head> <title></title> </head> <body> <div class="foo1"> <div class="foo2"> <div class="foo3"> <p>Hello there</p> </div> </div> </div> </body> </html>
This result is not expected. Any idea what am I doing wrong?