garand / sticky

jQuery Plugin for Sticky Objects
Other
3.3k stars 1.06k forks source link

Safari on OS X - fonts become dimmed and thinned when scrolling #200

Closed seba-g closed 8 years ago

seba-g commented 8 years ago

When I scroll down on Safari all the fonts change. Firefox and Chrome are working fine.

Here's a sample fiddle I'm working on https://jsfiddle.net/6r9v6wxt/

ghost commented 8 years ago

Try it:

body {
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizelegibility;
}
seba-g commented 8 years ago

@meche Thanks for replying to this old thread. And solving it! It looks great now with your code! Much appreaciated!