Skip to content

Instantly share code, notes, and snippets.

@joshuafredrickson
Last active December 15, 2015 22:09
Show Gist options
  • Save joshuafredrickson/5331189 to your computer and use it in GitHub Desktop.
Save joshuafredrickson/5331189 to your computer and use it in GitHub Desktop.
CSS: Default web font styles for strong and italic
strong em, strong i, b em, b i, em strong, em b, i strong, i b {
font-weight: normal;
font-style: normal;
font-family: '[WEBFONT-Bold+Italic]', Helvetica, Arial, sans-serif;
}
strong, b {
font-weight: normal;
font-style: normal;
font-family: '[WEBFONT-Bold]', Helvetica, Arial, sans-serif;
}
em, i {
font-weight: normal;
font-style: normal;
font-family: '[WEBFONT-Italic]', Helvetica, Arial, sans-serif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment