Not sure the tile explains well what I am trying to do:
For as long as I can remember, it seems to make a difference (when you care about every single pixel) whether you write
<span>XX</span><span>XX</span><span>XX</span>or
<span>XX</span> <span>XX</span> <span>XX</span>
In this example there is an extra pixel of space between the spans.
Now that most content is generated both manually and dynamically with PHP, this is an even bigger problem as there is no consistency.
How can I get rid of this problem?
I was thinking of somehow removing all tabs and line breaks from the delivered html file before displaying it to the user ... is that the best way and if so, how would I do that?
Thanks a million and best wishes,
Lars













