/ Published in: jQuery
Chrome bug-fix. CSS forces Chrome to redraw the fonts
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
body { -webkit-animation-delay: 0.1s; -webkit-animation-name: fontfix; -webkit-animation-duration: 0.1s; -webkit-animation-iteration-count: 1; -webkit-animation-timing-function: linear; } @-webkit-keyframes fontfix { from { opacity: 1; } to { opacity: 1; } }