Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bold Fonts in Google Chrome are Blurry (@Font-Face)

Recently after upgrading my Google Chrome browser to Version 32.0.1700.76 m I noticed that bold fonts have a blur/drop shadow effect on my sites using @font-face.

Here is an example site with bold text.

enter image description here

Here is an example site with bold headers.

enter image description here

Before updating my Chrome these sites were displaying font correctly, I have tested fonts in the following browsers and they are still displaying correctly:

  • Firefox 26.0
  • IE11
  • Opera 12.11
  • Safari 5.1.7

Is there any way to stop this blur effect other than downgrading Google Chrome?

EDIT

I sent a error report to Google about this issue and it seems like they have reverted the "blurry" effect on fonts. To avoid this issue go with Jukka K. Korpela's solution.

like image 204
AfromanJ Avatar asked Jan 24 '14 12:01

AfromanJ


People also ask

Why does the font on Google Chrome look blurry?

Disable Google Chrome Extensions A sketchy Chromium extension can also lead to blurry font throughout the browser. It can be difficult to pinpoint a single extension for this behavior. Instead, you can disable most extensions in your Chrome browser and restart the app.

Why does my font look blurry?

Blurry font problems can be caused by cables that aren't connected properly, older monitors, and poor screen resolution settings.


1 Answers

In the examples, you have declared only normal (regular) typefaces for Gotham and Sansation in @font-face rules, yet try to use bold face. This makes browsers apply algorithmic (synthetic) bolding, with varying results.

The solution is to get bold typefaces and declare them, in @font-face rules that have font-weight: bold.

like image 140
Jukka K. Korpela Avatar answered Sep 20 '22 15:09

Jukka K. Korpela