I am using "Edit Html" in firebug and inserting the following bit of code:
<div title="show-details">
X
<p class="quick-details">
<p title="about-player">
<p title="name">Drew Brees #9</p>
<p title="position">Quarterback</p>
<p title="team">The Saints</p>
</p>
</p>
</div>
However, when I move off of edit html mode, what is actually IN the DOM is this:
<div title="show-details">
X
<p class="quick-details">
</p><p title="about-player">
</p><p title="name">Drew Brees #9</p>
<p title="position">Quarterback</p>
<p title="team">The Saints</p>
<p></p>
<p></p>
</div>
Am I missing something about how the p element works? The MDC says the content can be any flow element. Where are those </p>s coming from? Is it firefox? firebug?
Edit before I accept the answer: So apparently <p> cannot nest within <p>, does that mean that the MDC is wrong or that I am somehow misinterpreting it?
<p>– Boris Zbarsky Jul 12 '11 at 15:16