I have the following HTML page (see jsfiddle) that contains a parent div with three children divs. I'm expecting to see the three divs one next to the other. Instead, I see that each child div is contained inside its sibling.
My web page HTML contains this:
<div id="div1">
<div id="div11" />
<div id="div12" />
<div id="div13"/>
</div>
however when I do "Inspect element" (in both IE and Chrome) I get this:
<div id="div1">
<div id="div11">
<div id="div12">
<div id="div13"></div>
</div>
</div>
</div>
What's wrong with this markup?