Chrome Fix for Disappearing Fonts


/ Published in: jQuery
Save to your folder(s)

Chrome bug-fix. CSS forces Chrome to redraw the fonts


Copy this code and paste it in your HTML
  1. body {
  2. -webkit-animation-delay: 0.1s;
  3. -webkit-animation-name: fontfix;
  4. -webkit-animation-duration: 0.1s;
  5. -webkit-animation-iteration-count: 1;
  6. -webkit-animation-timing-function: linear;
  7. }
  8.  
  9. @-webkit-keyframes fontfix {
  10. from { opacity: 1; }
  11. to { opacity: 1; }
  12. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.