This one is quite specify: specify ttf font rendering font-weight:bold incorrectly on iOS mobile safari, open demo site with iphone/ipad with iOS 4.2/4.3 Beta 3 or above:

(this is Reenie+Beanie from google fonts)

http://jsbin.com/ojeqe3/16/

Screen capture

You see the bold font look double rendered. This is not significant for small and medium font size, but quite significant for large font-size / zoom in

My friend will report this bug to apple. However, anything he can do to solve the bug? (kill the text-adjust is not OK)

Update: This one is not fixed in iOS5.

The best solution I know for the problem will be

  1. Use font-weight:normal (as shown in demo)
  2. Use either -webkit-text-stroke or text-shadow to make it look "bold" (plus iPad only css - body prefix added by js, not only media query)
link|improve this question
1  
Well...if it's a bug then it's a matter of hacking around to see if you can trip a switch somewhere that stops this from triggering - I'd probably try combinations of -webkit text effects to see if I get lucky (like font-smoothing, text-shadow with a transparent shadow, a -webkit text stroke etc.) – Michael Mullany Feb 22 '11 at 1:18
Luckily this is not so significant if you doesn't use the medium font-size and disable zooming...thank you for hint :) – vincicat Feb 22 '11 at 6:39
1  
+1 good question. Same issue. I'm surprised there aren't more votes. – Steve Jun 16 '11 at 12:32
feedback

3 Answers

Had the same issue with an h1 inheriting the font-weight:bold; from a parent class. Just over-write the inherited style with a font-weight:normal;

link|improve this answer
totally fixed the double render for me. – technopeasant Jun 13 '11 at 23:24
2  
@vincicat This is the correct answer. Can you please mark it? – Tim Fletcher Oct 31 '11 at 5:12
1  
It is not the correct answer or the fix - although it stops the double rendering it also stops the ability have bold text with font-face. The user wants to have bold text with font face without this hacky double rendering. – cosmicbdog Apr 8 at 0:05
this fixed the problem for me, but only because I didn't need multiple weights of the font. it would be nice if there was a solution to allow for font-weight:bold to work. I guess we'll just have to wait for the bug to be fixed... – Tim Mackey May 1 at 23:09
This just saved me, thank you! Note to those trying to add more font weight to their already custom font-face: choose a font that has the thickness you are looking for, dont hack up someone else's font because you chose wrong - its not going to work everywhere how you imagine it. Choose again. – sic1 May 10 at 21:40
feedback

Try applying this css rule:

-webkit-font-smoothing: antialiased;
link|improve this answer
1  
fixed a weird thick rendering issue i had with a font face rule – technopeasant Jun 13 '11 at 23:23
feedback

don't use the 'bolder' or 'bold' tag. they aren't necessary if you are using a specific weighted webfont.

I had the same problem. It went away when I removed any mention of font-weight.

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.