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
Starx
2010-07-21 07:28:19
@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
2010-07-21 07:30:47
+1
A:
Yeah, it's possible to have multiple text-shadow
s 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
2010-07-21 07:54:18