Skip to content

Instantly share code, notes, and snippets.

@dsebao
Created March 28, 2014 04:36
Show Gist options
  • Save dsebao/9825509 to your computer and use it in GitHub Desktop.
Save dsebao/9825509 to your computer and use it in GitHub Desktop.
Better fonts in browser
.myElement{
-webkit-font-smoothing: antialiased;
}
.myElement{
-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
/*Font face?*/
@font-face {
font-family: 'HLC';
src: url('/_styles/hlc/hl-webfont.eot');
src: url('/_styles/hlc/hl-webfont.svg#HLC') format('svg'),
url('/_styles/hlc/hl-webfont.eot?#iefix') format('embedded-opentype'),
url('/_styles/hlc/hl-webfont.woff') format('woff'),
url('/_styles/hlc/hl-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment