Created
July 27, 2016 15:40
-
-
Save jserrao/07ebb6068acaf5bb4883b80c70fa141c to your computer and use it in GitHub Desktop.
CSS Text Stroke with Text Shadow
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
/* Adding text stroke using text-shadow, which most browsers actually know */ | |
h1 { | |
color: white; | |
text-shadow: | |
-1px -1px 0 #000, | |
1px -1px 0 #000, | |
-1px 1px 0 #000, | |
1px 1px 0 #000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment