How to make "custom" background for a word? (as shown in the image)

0

How do you do this kind of background effect, as shown in the image below? If possible using CSS.

Iwantittolookliketheimage.Ididwiththetext-shadow( link ) but it didnt look cool.

    
asked by anonymous 28.07.2014 / 15:16

1 answer

1

Use CSS3 Text Shadow :

<style>
.sombra {
    text-shadow: 1px 2px 3px #666;
}
</style>
<p class=sombra>Teste</p>
    
28.07.2014 / 15:40