Skip to content

Instantly share code, notes, and snippets.

@markbrown4
Created August 6, 2012 08:11
Show Gist options
  • Save markbrown4/3272225 to your computer and use it in GitHub Desktop.
Save markbrown4/3272225 to your computer and use it in GitHub Desktop.
-webkit-background-clip: text; causes blurry text on retina display
/**
* -webkit-background-clip: text; causes blurry text on retina display
*/
html { -webkit-text-size-adjust: none }
h1 {
color: #535353;
font: lighter 50px/1 Helvetica;
background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#535353));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
<h1>Crispy text</h1>
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment