I am currently playing around with CSS3 and trying to achieve a text effect like this (the black blurry inner shadow):
There's a much simpler way to achieve this
.inner{color: red; text-shadow: 0 -1px 0 #666;} // #666 is the color of the inner shadow
Voilà