Skip to content

Instantly share code, notes, and snippets.

@bencooling
Last active December 23, 2015 16:59
Show Gist options
  • Save bencooling/6666025 to your computer and use it in GitHub Desktop.
Save bencooling/6666025 to your computer and use it in GitHub Desktop.
CSS: Cascading Stylesheets
/* Fix webkit blurry light text on dark background */
selector {
-webkit-font-smoothing: antialiased;
}
/* With modernizer */
.my-element {
background-image: url(image.svg);
}
.no-svg .my-element {
background-image: url(image.png);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment