Block tags (ie: div) are not allowed inside element tags (ie: span).

Code: 
<span><div></div></span>
That will not validate, since the "rule" is: block tags wrap element tags, not the other way around.