SPAN inside A inside H1 display in Chrome 5
- by devils-avacado
<h1>
<a>Lorem ipsum
<span>dolor</span>
</a>
</h1>
In Chrome the contents of the SPAN have a line break in front of them, "dolor" is displayed on the line below, even with display:inline explicitly set. Expected it to display on same line as "Lorem ipsum". Displays fine in IE8 and FF3.5. Any fixes?
…