tags:

views:

24

answers:

2

I want to give shadow effect to some of my texts in a website which would make it look like 3D using CSS Is it possible?

+2  A: 

I dont know what you mean by Multiple, but if you want 3d like shadow see this tutorial below

http://css-tricks.com/examples/3DTextTower/

UPDATE

In that case

see this for multiple text shadows

http://css-tricks.com/snippets/css/text-dripping-blood/

Starx
@starx multiple means many text shadow,commonly we can use only one text shadow my question is the same we can use multiple text shadows or noti went through your link but it was not useful,it gave me a hover effect which i dont needi need a 3D text
Kumod
+1  A: 

Yeah, it's possible to have multiple text-shadows on a font, just use a comma-separated list of values:

p {
text-shadow: 0.1em 0.1em 0.2em #ccc, 0.2em 0.2em 0.3 em #ddd /* ...other...*/
}
David Thomas