I would have assumed that setting letter-spacing to -1px on a two-character span would reduce its width by 1px. However, see the following in Chrome:
span.style.fontSize=48
48
span.textContent="99"
"99"
span.style.letterSpacing=0
0
span.offsetWidth
16
span.style.letterSpacing="-1px"
"-1px"
span.offsetWidth
14
Setting letter-spacing to -1px has reduced the width by 2px rather than 1.
This might be less important if it did not cause the text with letter-spacing of -1px to be slight off-center when you are trying to align it with text-align: center.
The CSS spec appears to say clearly that letter-spacing is supposed to affect spacing between letters. However, it seems that at least in Chrome the spacing between some conceptual start point and the first character of text is also compressed.
Any ideas or thoughts on this? IE 10 exhibits the same behavior. A bug? Or misreading of the spec?
-2px(-1pxfor each letter, not counting one of the endpoints)? – Blender Aug 4 '12 at 18:28