Hi all,

When viewed in a browser, why is it that

<p>
  { <b>hi</b> }
  &nbsp;
  <span class="blah">there</span>
</p>

yields 3 spaces between 'hi' and 'there', while

<p>
  { <b>hi</b> }
  <span class="blah">there</span>
</p>

or even

<p>
  { <b>hi</b> } <span class="blah">there</span>
</p>

yields 0 spaces between 'hi' and 'there'?

I've been writing things as

<p>
  { <b>hi</b> }&nbsp;<span class="blah">there</span>
</p>

which is getting pretty messy.

Cheers,
Eric
_______________________________________________
General mailing list
[email protected]
http://xqzone.com/mailman/listinfo/general

Reply via email to