AEM moves div tag - how to fix?
I have an AEM component with the following structure:
<div A>
<div B>
<div C />
</div B>
<div D>
<div E />
</div D>
</div A>
However, it shows in my AEM pages with this structure:
<div A>
<div B>
<div C />
</div B>
</div A>
<div D>
<div E />
</div D>
What is causing this, and how do I fix it? Thanks!

