CSS shadow insert effect css3

enter image description here

I need the insert effect for this button. Cancel "text" will be clicked. I have tried many examples available on the Internet, but they have no examples on a white background.

Help me achieve this effect.

Thanks in advance!

+5
source share
1 answer

Using the property text-shadowyou can get the subtle effect that you need:

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

See a very simple jsfiddle example .

+20
source

All Articles