Cool Text Effects Using CSS3 Text-Shadow

Click below to share this article!

     

    Lately there has been a great amount of websites that have started incorporating CSS3; Many of which have used some kind of text effects such as text shadows. While text shadows have been around for quite some time, it has recently become so much easier to implement because of modern browsers.

    Here, I’ll show you how to create some really cool and inspiring text effects using text shadows in CSS3. But before I get into the actual meat and potatos of the CSS code, I’ll tell you first how the code works.

    Text shadows are pretty easy to implement. Here is an example of the code:

    h1 {
        text-shadow: 3px 5px 10px #000;
    }
    

    As you can see, I am applying the text-shadow property to the header H1 tag. Also, the text-shadow property has four values. The first value (3px) is the X-coordinate, the second value (5px) is the Y-coordinate, the third value (10px) is the blur radius, and the last value (#000) is the text-shadow color in hex code. Here’s an easier diagram that shows which property is which.

    text-shadow information

    Now that I’ve shown you how to implement text-shadow to various text elements on your website, I’ll show you some cool text effects that you can do using various methods of the text-shadow property.


    css3 inset

    INSET

    Inset is the most commonly used text effect used in CSS3 today. Inset text effect gives the impression of the letters to look like it is pressed in to the background. It only requires two variations of the text-shadow property where the Y-coordinate value is changed to give the illusion of an inset text. This works best if the background is a lighter color than the actual text color. It also works vice versa for pages with darker backgrounds and lighter text. Just modify the text-shadow color value to a different value as needed. Also, if you look at the code below, you’ll notice that the third value (blur radius) of the first text-shadow property is given a value of 0. I do this to create a inner shadow effect on the text which helps to distinguish a more prominent inset look.

    h1 {
         text-shadow: 0px -2px 0px #333,
                      0px 2px 3px #666;
    }
    

    css3 3d text

    3D Text

    The 3D text effect uses various layers of text-shadow to create a raised look. In this example, I’ll be using a white-colored text while varying the X-coordinate numerous times creates the desired effect.

    h1 {
          text-shadow: 0 1px 0 #bbb,
                       0 2px 0 #bbb,
                       0 3px 0 #aaa,
                       0 4px 0 #aaa,
                       0 5px 0 #999,
                       0 6px 1px #000,
                       0 0px 3px #000,
                       0 1px 3px #000,
                       0 3px 5px #000,
    	           0 5px 10px #000,
    	           0 5px 20px #000;
    }
    

    css3 neon lights

    Neon Lights

    The Neon Lights text effect uses various layers of text-shadow to create a glow on the outside of the text. By varying the blur radius numerous times, you can create the illusion of neon text. In this example, I’ll be using a light green-colored text as the base and will be applying numerous layers of text-shadow while changing the blur radius to achieve the desired effect.

    h1 {
          text-shadow: 0 0 10px #fff,
                       0 0 20px #fff,
                       0 0 30px #fff,
                       0 0 40px #ff00de,
                       0 0 70px #ff00de,
                       0 0 80px #ff00de,
                       0 0 100px #ff00de,
                       0 0 150px #ff00de;
    }
    

    As you can see, it’s quite easy to implement various types of text-shadow to create some cool text effects. You can also try using those same text effects on different types of fonts using the @font-face rule as well.

    Click below to share this article!

      Tags: , , , , , , , , , , , ,

      Alfonse Surigao is a UX/UI designer and Web developer from San Francisco. He shares his passion for design and all things web. Visit his portfolio at: http://www.alfonsewebdesign.com or follow him on Twitter @iamalfonse

      13 Comments Leave yours

      1. Awesome..
        Nice trick… Thanx for sharing this effects.. :D

      2. tomdanme #

        Cool! Thats the best inset text I’ve ever seen apart from the webkit clip method! Could you tell me what the text and the background colours are in the exampe?

      3. HI,

        3D TEXT IS COOOL :) I am waiting for more …

      4. HIll #

        Yes, thanks! inspiration is wonderful, implementation is a Godsend, and instruction… impeccable. great work.

      5. Suresh,Vanakkam Chennai #

        Hi,

        Thanks for sharing

        I love 3D text effect very much…

      6. Wow this is aweseom! Css is so great now!

        • boris #

          kako ide sa web dizajn crna gora?

      7. boris #

        Awesome…good work man gr. boris

      8. Lights text is very beautiful, I will use it on my site, thankyou !

      9. thank you i like css3, html5 and jquery!
        good blog!

      18 Trackbacks

      Leave a Reply





      A place for web design and inspiration. Whether you are a seasoned web designer or developer, or someone who wants to learn how to create websites, you can find ideas and inspiration to help you with your designs.