AWS Amplify - the fastest, easiest way to develop mobile and web apps that scale.
text-stroke
is an experimental property that provides text decoration options similar to those found in Adobe Illustrator or other vector drawing applications. It is not currently included in any W3C or WHATWG specification. As of June 2013, it is only implemented behind a -webkit
vendor prefix, though future versions of Firefox and Internet Explorer may support the property (likely under their own prefixes).
mark {
-webkit-text-stroke: 2px red;
}
The text-stroke
property is actually shorthand for two other properties:
text-stroke-width
, which takes unit value (1px, 0.125em, 4in, etcetera) and describes the thickness of the stroke effect.text-stroke-color
, which takes a color value (hex, rgb/rgba, hsl/hsla, etcetera).
text-stroke
also has a companion property, text-fill-color
, which will override the color
property, allowing for a graceful fallback to a different text color in browsers that do not support text-stroke
.
Check out this Pen!
Points of Interest
- The stroke drawn by
text-stroke
is aligned to the center of the text shape (as is the default in Adobe Illustrator), and there is currently no option to set the alignment to the inside or outside of the shape. Unfortunately this makes it much less usable, as no matter what now the stroke interferes with the shape of the letter destroying the original type designers intent. A setting would be ideal, but if we had to pick one, outside stroke would have been much more useful. - in Webkit,
text-stroke
is animatable with CSS Transitions and Animations – but only the stroke color, not the stroke width. - A more browser-compatible (and arguably robust) stand-in for the
text-stroke
effect is usingtext-shadow
, which is outlined in this CSS-Tricks article.
Other Resources
- Surfin’ Safari: Introducing Text-Stroke
- Full browser support table on caniuse.com
- CSS-Tricks: Adding Stroke to Web Text
- Live Editor
Browser Support
Chrome | Safari | Firefox | Opera | IE | Android | iOS |
---|---|---|---|---|---|---|
-webkit- | -webkit- | 21 | 15+ | 10 | Complicated | -webkit- |
A note on browser support: The table above is a summary of overall browser support for text-stroke
– the truth is much more complicated (for example, Android supported the property in versions 2.1-2.3, then removed support in 3.0, before restoring support in 4.0). For the full browser support table, visit caniuse.com/text-stroke.
nice tricks thanks
Regarding outside strokes, please see my wish:
https://github.com/w3c/fxtf-drafts/issues/117