Using CSS Text-Shadow to Create Embossed Text
The text-shadow property creates a shadow underneath text, which is obvious from the name! It’s similar in syntax and functionality to box-shadow
, but it follows the shapes of individual letters, rather than rendering around an element’s bounding box.
Here’s an example of the general syntax that defines an x-offset, y-offset, blur-radius, and color:
1 | text-shadow:3px 3px 1px #999; |
view plain | print |
… And its corresponding image:
Now I don’t know about you, but there’s no situation where I’d ever want my text to look like that! I’ve never worked on a design where this type of effect was called for, and I don’t think it looks very nice. It’s cheesy — like what you’d find in a spam email, or on a Geocities site.
A Touch of Class
However text-shadow
is very useful for a certain task, and this seems to be almost exclusively what it’s used for in the wild — creating embossed text like this:
It has this shadow property:
1 | text-shadow:0 -1px 1px rgba(0,0,0,0.5); |
view plain | print |
Done carefully and not too brazenly, the effect can be attractive; it gives functional text like buttons and captions an extra touch of class.
You can see a few examples of it on this page:
- orange buttons, such as the “Search” button in the search form at the top, or the “Subscribe” button for newsletter signups in the right-hand column
- the navy-headed boxes, like the newsletter signups box we just mentioned saying “Get Expert Tips In Your Inbox”, or the categories tabs near the top
So how does it work?
Light and Shade
Shadow and depth effects are created by simulating light and shade, so it follows that we have two basic ways of applying text-shadow
to create an embossed effect:
-
a positive white shadow that creates the impression of light at the bottom of the letters, essentially:
1 text-shadow:1px 1px 0 white; view plain | print -
a negative black shadow that creates the impression of shade at the top of the letters:
1 text-shadow:-1px -1px 0 black; view plain | print
But the issue that arises is that it can be quite difficult to find the right balance of shades, in terms of how much of which to apply in order to achieve a realistic result. Too subtle and it’s almost invisible to the naked eye; too obvious and it starts to look like a drop-shadow. And unfortunately one of the hardest effects to get right is dark text on a light background, especially since the text-shadow is rendered outside the font, rather than on top of it.
Tips and Tricks
So what can we do to make the effect more realistic — so that it looks more like embossing or engraving — and less like a big, ugly drop-shadow? Here are my tips:
First and foremost, use RGBA color values, so that the effect has partial opacity. This makes it blend better with the background, and gives you more control over the intensity of the effect. (Although RGBA colors lack support in IE, it’s academic since it doesn’t support this property anyway.)
Don’t offset the shadow in both x and y directions as it’s visually too much. It looks better if you only offset in the y direction, as though the light were directly above.
Then use different shadows according to the color combinations you’re working with:
-
For light text on a colored (but not very dark) background, use a dark negative shadow with opacity from
0.25
upwards (the higher the value, the more pronounced the effect). Here I’ve also softened the effect slightly with a1px
blur-radius:1 #light-on-color 2 { 3 background:#f60; 4 color:#fff; 5 text-shadow:0 -1px 1px rgba(0,0,0,0.5); 6 } view plain | print -
For colored text on a light (but not white) background, use a light positive shadow with fairly high opacity:
1 #color-on-light 2 { 3 background:#eea; 4 color:#229; 5 text-shadow:0 1px 0 rgba(255,255,255,0.75); 6 } view plain | print -
Other combinations are more tricky: a dark shadow will be ineffective against a very dark background or with very dark text, and the same for a light shadow with a light background or text. But after a whole bunch of experiments, I reckon the best effect is achieved with a subtle combination of both light and dark shadows. Add a low opacity on the dark shadow, high opacity on the light shadow, and a slight bias toward the background shade (so for dark text on a light background, use a bit more light shadow and a bit less dark; and vice versa). Similar to this:
1 #dark-on-light 2 { 3 background:#eee; 4 color:#223; 5 text-shadow:0 -1px 0 rgba(0,0,0,0.15), 6 0 1px 0 rgba(255,255,255,0.8) 7 } 8 #light-on-dark 9 { 10 background:#223; 11 color:#eee; 12 text-shadow:0 -1px 0 rgba(0,0,0,0.3), 13 0 1px 0 rgba(255,255,255,0.4) 14 } view plain | print The further away from either extreme you can go (that is, towards a darker shade of a light color, or a lighter shade of a dark color), the better the final effect should be.
Those last examples are far from perfect, and the effect is only marginally pronounced (which is how we stop it from looking too much like a drop-shadow). But I think they make the best of awkward color combinations, and so all factors considered, they look okay.
from SitePoint