Skip to content

Instantly share code, notes, and snippets.

@jserrao
Created July 27, 2016 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jserrao/07ebb6068acaf5bb4883b80c70fa141c to your computer and use it in GitHub Desktop.
Save jserrao/07ebb6068acaf5bb4883b80c70fa141c to your computer and use it in GitHub Desktop.
CSS Text Stroke with Text Shadow
/* 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