Skip to content

Instantly share code, notes, and snippets.

@udkl
Created April 14, 2012 14:28
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 udkl/2384762 to your computer and use it in GitHub Desktop.
Save udkl/2384762 to your computer and use it in GitHub Desktop.
CSS-text-border-stroke
http://css-tricks.com/adding-stroke-to-web-text/
#top-logo
{
font-family: ChunkFiveRegular;
font-size: 0.7em;
}
#top-logo .two {
color: #2D455D;
-webkit-text-fill-color: white; /* Will override color (regardless of order) */
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: #2D455D;
display:inline;
}
#top-logo .one {
color: #2D455D;
display:inline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment