Skip to content

Instantly share code, notes, and snippets.

@babsgosgens
Last active December 20, 2015 23:39
Show Gist options
  • Save babsgosgens/6214606 to your computer and use it in GitHub Desktop.
Save babsgosgens/6214606 to your computer and use it in GitHub Desktop.
@mixin reset-text-rendering
{
/*
* See: http://www.usabilitypost.com/2012/11/06/optimize-legibility/
*/
text-rendering: optimizeLegibility;
/*
* Prevents the browser from using synthesized font-weights.
*/
font-synthesis: none;
// @todo: these next two settings influences the appearance and should be moved to Base
/*
* See: http://meyerweb.com/eric/css/tests/css3/font-variant-ligatures.html
*/
font-variant-ligatures: common-ligatures;
/*
* See: http://meyerweb.com/eric/css/tests/css3/font-variant-numeric.html
*/
font-variant-numeric: oldstyle-nums diagonal-fractions;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment