开发者

multiple 3D text shadow using css

开发者_如何转开发

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?


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...*/
}


Use this

http://jsfiddle.net/RobertKolatzek/uk2my/1/

and try to understand, how it works (colors, sizes, etc).

At bottom, you get your text-shadow property to copy and paste.

In a simple case, you use text-shadow to render 3D, then the shadow of it:

text-shadow: 0px 4px 0 #ccc, 0px 6px 0 #888;
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜