Forum Moderators: open
<font size="1">Boo</font>=>SPACE HERE<=
Which is a bit like having
<font size="1">Boo</font><font size="3"> </font>
You can make sure that this isn't the case by having the appropriate ending tag next to the end of your tags etc..
<font size="1">Boo</font></td>
And it may also help to end inside your font (or span or whatever) tags with a space so any following white-space is ignored:
<font size="1">Boo </font>=>SPACE HERE<=
Josh
PS Let us know if this solves your problem.
I can spot this problem on a web page, so don't think it's unique to you. I use to wonder why the line height of the last sentence of a <p> was higher than the rest. All to often, there's no </p> tag immediately after the </font>. I know they say it's not required, but the lack of it will cause the exact problem you described.
sarkye, Verdana is the only font I use in a real small size; it's got enough spacing to stay legible.
There were an incredible number of redundant font tags on the page (Dreamweaver 2 does that), all mixed in with <br> tags in a nested unordered/ordered list within a <td>.
That was the worst page, and finally pulling every font tag on the page and using a little CSS in the head section straightened it out. I can't believe how many font tags there were.
I think it's time to move on to external CSS and stop using font tags altogether.
Thanks all, that was it!