Possible Duplicate:
Is it possible to get cut out text effect like this using CSS/CSS3 only?

I know there's some cool text shadow effects that can be achieved with css's text-shadow property. Is it possible to replicate the look of the bold red text in the image below with css (just the text, not the underline) ?

alt text

link|improve this question

feedback

closed as exact duplicate by Bill the Lizard Oct 9 '11 at 21:37

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 1 down vote accepted

You can get something vaguely close to this by using a text shadow that puts a dark shadow up and to the left, a light shadow down and to the right, and a same-color shadow overlaid on the text with a small blur to even things out. It doesn't really look as good because you can't clip the gradient at the letter form borders.

link|improve this answer
+1! A small addition: All browsers that are supporting text-shadow are also capable of dealing with RGBA colors. You can use something like rgba(0, 0, 0, 0.5) to darken the text at the top. This makes it really easy to use this effect with different text colors, since you do not need to copy it for every variation. – elusive Nov 20 '10 at 0:02
yes that's a really good point - you can lay down "red" as the main text color, and then make a 30% alpha black overlay on top and a 30% white overlay on the bottom – Pointy Nov 20 '10 at 0:04
I don't think that is something you want, in general. Because transparency in the text-shadow means that the shadow tint will be intermixed with the background-color, not with the text color. And that is exactly something you do not want when you are trying to imitate an "inset text drop shadow" (which is supposed to be a shadow on the text instead of on the background). – Tim Molendijk Dec 2 '11 at 15:38
feedback

Light text on darg bg:

text-shadow: 0px -1px 0px #374683;

Dark text on light bg:

text-shadow: 0px 1px 0px #e5e5ee;

For ie.

filter: dropshadow(color=#e5e5ee,offX=0,offY=1);

Added quick demo for you:

http://jsfiddle.net/ozzy/WMVMW/

link|improve this answer
Cool idea! Here's a variation: dabblet.com/gist/1609945 – Web_Designer Jan 14 at 2:25
feedback

No, not until text-shadow supports an inset value.

Although, as others have mentioned, you can at least get the 1px white drop shadow with text-shadow right now. Just not the inner shadow.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.