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.
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.
Use CSS3 Text Shadow
:
<style>
.sombra {
text-shadow: 1px 2px 3px #666;
}
</style>
<p class=sombra>Teste</p>