Skip to content

Instantly share code, notes, and snippets.

@justerror
Last active March 4, 2021 15:24
Show Gist options
  • Select an option

  • Save justerror/a4d4179a8ec2906fe83a51ccd9dcba4e to your computer and use it in GitHub Desktop.

Select an option

Save justerror/a4d4179a8ec2906fe83a51ccd9dcba4e to your computer and use it in GitHub Desktop.
Better cross browser font smoothing
body {
// Better cross browser font smoothing
text-rendering: optimizeLegibility;
font-variant-ligatures: none;
text-decoration-skip: objects;
text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-tap-highlight-color: transparent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment