2

Got something like this

<div class="something">

<div></div>

<p>
Some text here
</p>

</div>

This is all called in a template in XSL.

For some reason I am getting when it's rendered that the empty div is never closed. The <p> and its contents are inside this div. This continues on and on for each time this template is called. :( If I only take out the empty div, all the "something" divs are separate entities and not inside each other.

How could this be happening?!

Ben Hull
  • 7,524
  • 3
  • 36
  • 56
bobber205
  • 12,948
  • 27
  • 74
  • 100

1 Answers1

1

Try putting an

&nbsp;

inside the empty div.

Magnum26
  • 265
  • 2
  • 13