try the following:
HTML:
<div style="background:#ccccc;"><h1 class="myshadow">Cool text</h1></div>
CSS:
h1.myshadow{ color: #C8C8C8; letter-spacing: 2px; text-shadow: 1px 1px white, -1px -1px #444; }
The CSS property you need to use is text-shadow
Additional information: http://www.w3schools.com/cssref/css3_pr_text-shadow.asp
source share