Last active
December 15, 2015 22:09
-
-
Save joshuafredrickson/5331189 to your computer and use it in GitHub Desktop.
CSS: Default web font styles for strong and italic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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