Skip to content

Instantly share code, notes, and snippets.

@guigmaster
Last active December 21, 2015 22:48
Show Gist options
  • Save guigmaster/6377759 to your computer and use it in GitHub Desktop.
Save guigmaster/6377759 to your computer and use it in GitHub Desktop.
@font-face rule cross browser
@font-face {
font-family: 'font_desejada';
src: url('font_desejada.eot');
src: url('font_desejada?#iefix') format('embedded-opentype'),
url('font_desejada.woff') format('woff'),
url('font_desejada.ttf') format('truetype'),
url('font_desejada.svg#font_desejada') format('svg');
font-weight: normal;
font-style: normal;
}
/*corrige erro de renderização no Google Chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'font_desejada';
src: url('font_desejada.svg#font_desejada') format('svg');
}
}
h1, h2, h3
{
font-weight: inherit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment