views:

35

answers:

1

We have three anchor tags. When all on one line they display correctly in IE8:

alt text

But when you separate the anchor tags onto separate lines for better code readability they do NOT appear correctly (there is a random extra "e" character and the alignment is off):

alt text

Any ideas?

+1  A: 

Looks like the 'dulplicate characters bug', this is usually caused by white space or comments in your code. Long time since ive seen this, thought it was ironed out in ie7. Obviously not.

Think the only fix was to remove the white space or comments.

Rocket Ronnie
Just did a quick google and found this, take a look at the first paragraph http://positioniseverything.net/explorer/dup-characters.html
Rocket Ronnie
That looks to be the case. I fixed this by applying `display:inline` to my anchor tags per this link http://snipplr.com/view/11000/ie6-double-margin-bug--duplicate-characters-bug-fix-using-jquery/. Thanks for the help!
Marcus