color: #38738f;
color: rgba(17,59,88,0.8);
text-shadow: -1px -1px 3px #fff, 0px 0px 1px #000;
h2 {color: #38738f; color: rgba(17,59,88,0.8); text-shadow: -1px -1px 3px #fff, 0px 0px 1px #000;}   which produced...     notice: I gave the h2 a fallback color for when the browser doesn't support rgba values. But most do ... ">

How to give text an inner shadow with CSS

This is how I did it...

 

color: #38738f;
color: rgba(17,59,88,0.8);
text-shadow: -1px -1px 3px #fff, 0px 0px 1px #000;
h2 {color: #38738f; color: rgba(17,59,88,0.8); text-shadow: -1px -1px 3px #fff, 0px 0px 1px #000;}

 

which produced...

 

CSS Text Inner Shadow

 

notice: I gave the h2 a fallback color for when the browser doesn't support rgba values. But most do now :)