Skip to content

Instantly share code, notes, and snippets.

@sambody
Created June 11, 2013 23:28
Show Gist options
  • Save sambody/5761719 to your computer and use it in GitHub Desktop.
Save sambody/5761719 to your computer and use it in GitHub Desktop.
CSS: Text shadow (IE 10+)
/* simple */
text-shadow: 1px 1px 3px #888; /* h-shadow v-shadow (blur) (color) */
/* multiple shadows, rgba for transparency */
text-shadow: 1px 1px 1px #000, 3px 3px 5px rgba(255, 255, 255, 0.4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment