I ran across the problem, I need to make it easy for users to read the text, so I used letter-spacing of 1 px, but it looks ugly, so I thought I'll use half a pixel so 0.5px, but it doesn't work, I tried using em attributes, but didn't achieve the task.

So is there a way to make letter spacing half pixel (cross browser solution if possible)

link|improve this question

You're likely running into pixel-alignment issues with font-hinting; you're probably shifting by half a pixel, but then the font rasterizer is re-aligning the text to pixel boundaries. The effects of 0.5px could reasonably vary from OS to OS and browser to browser. – Phrogz Oct 18 '11 at 17:29
feedback

4 Answers

up vote 2 down vote accepted

This bug has been reported back in 2008 and is confirmed. So if someone feels like hacking into webkit that would make a lot of designers happy.

https://bugs.webkit.org/show_bug.cgi?id=20606

link|improve this answer
feedback

No, there is no such thing as half a pixel. A pixel is the smallest addressable unit on a monitor.

link|improve this answer
2  
This is a false statement. Ilya, you should not be so quick to accept authoritative-looking answers. Here is an example showing where fractional pixels make a difference in CSS: jsfiddle.net/WUQFy/1 – Phrogz Oct 18 '11 at 19:58
2  
Although the answer 'no' is correct, his following statements are both wrong. Half pixels exist and are notably used in the Canvas element. – GAgnew Oct 18 '11 at 20:09
@GregAgnew: Take a look at developer.mozilla.org/en/Canvas_tutorial/…. "canvas coordinates do not directly reference pixels" – Zach Rattner Oct 19 '11 at 1:19
feedback

Sub-pixel sizes are legal, but they can have unpredictable results across browsers. Things like text also try to align themselves to whole pixels (as Phrogz says), so chances are the resulting rounding errors might make things look uneven.

link|improve this answer
Per the CSS2 Specifications the amount of spacing is "in addition to the default space between characters"; having an extra 0.5px is a reasonable and readable desire – Phrogz Oct 18 '11 at 20:18
Okay then, wrongness removed from answer. – Toomai Oct 18 '11 at 20:28
feedback

Sub-pixel letter spacing works fine on FF, but not on WebKit (at least on Windows). See this test case:
http://jsfiddle.net/fZYqL/2/

This test also shows that it is not the sub-pixel literal value that is a problem. Using fractional em values that result in less than 1px of letter-spacing are also not honored on Webkit, but work just as well on Firefox.

Firefox versus Webkit

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.