How can I manipulate text with shadows in CSS to achieve an effect like the “30 Free Vector Icons” text below?

enter image description here

link|improve this question

feedback

migrated from webmasters.stackexchange.com Jan 25 at 10:10

This question came from our site for pro webmasters.

3 Answers

try this :

HTML :

<div style="background:#ccccc;"><h1 class="myshadow">Cool text</h1></div>

CSS :

    h1.myshadow{
            color: #C8C8C8;
            letter-spacing: 2px;
            text-shadow: 1px 1px white, -1px -1px #444;
    }

CSS property you need to use is text-shadow

More info : http://www.w3schools.com/cssref/css3_pr_text-shadow.asp

link|improve this answer
feedback

There is the text-shadow property, which is reasonably well-supported outside of Internet Explorer. IE’s Glow filter provides a kind of similar effect.

Safari and Chrome also have -webkit-text-stroke, but that’s not supported anywhere else.

link|improve this answer
feedback

Here some info about CSS3 shadows

Different methods are showed here to achieve box shadow and text shadows http://www.webdesignshock.com/css3-drop-shadow

The following have text shadow examples

http://line25.com/articles/using-css-text-shadow-to-create-cool-text-effects

And to visually match your example, this demo is using the same colors and effets

http://line25.com/wp-content/uploads/2010/text-shadow/demo/index.html

link|improve this answer
You are right, thank you, i will update my answer – jflaflamme Jan 25 at 10:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.