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?
CSS Syntax Note: To add more than one shadow to the text, add a comma-separated list of shadows.
You can comma separate box-shadow any many times as you like.
By using a comma, we can specify multiple text shadows. Here we have created the first text shadow with the same color as th background to give a semi-3D effect.
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...*/
}
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;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With