Skip to content

Instantly share code, notes, and snippets.

@crohrer
Created July 24, 2014 08:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crohrer/f171291819845aa546b6 to your computer and use it in GitHub Desktop.
Save crohrer/f171291819845aa546b6 to your computer and use it in GitHub Desktop.
Fix for Chrome Font Bug
/* inspired by https://codestag.com/fix-google-chrome-web-fonts-issue/ */
* {
-webkit-animation-duration: 0.1s;
-webkit-animation-name: fontfix;
-webkit-animation-iteration-count: 30;
-webkit-animation-timing-function: linear;
-webkit-animation-delay: 0.1s;
}
@-webkit-keyframes fontfix {
0% {
opacity: 1;
}
30% {
opacity: 0.99999999999;
}
100% {
opacity: 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment