skip main navigation skip all navigation top
 

Blurred text in CSS

Charanjit Chana BSc

This is my personal blog, covering a wide range of topics including web development, design, technology, film, music, TV and sport. I'm a web developer and creator of popular fashion website, Be Unequaled.

Search

Categories

Tags

See all tags

Social networks

Flickr

  • My Crackbook
  • Maha camo x Futura logo - branded
  • Ruins near Ceasar's Palace - inside of Arch
  • Ruins near Ceasar's Palace
  • Star Crak
  • Castle in Rome
  • shark ice
  • Torres destroys
  • Shark Ice

Nike+ Nike+

    Links

    Arrested Development

    Quote #156 (of 307):

    George Sr.: You should have seen the face he made when - well, he's my twin brother, I'll show you.

    Share this quote

    Quotes fed from IMDB.com

    Advertisements

     

    It's possible to make text looked blurred using just CSS3. See the examples below, just hover over the first bit of text to see the possibility of using blurred text as a hover state.

    Some blurred text

    Some blurred text



    Above, you can see some examples of blurred text in browsers that support CSS3

    The trick is to change the colour of the element and either apply the text-shadow or box-shadow properties through CSS. Using the :hover pseudo-class you can create a blurred/unblurred effect

    Example:


    HTML:

    <h1 class="blurred">Blurred text</h1>
    



    CSS:

    h1.blurred {
    	color: #FFF;
    }
    h1.blurred:hover {
    	cursor: pointer;
    	color: #666!important;
    	text-shadow: 0 0 5px #444;
    }
    



    The colours need to be selected carefully, as the shadows are often a bit lighter than the foreground text colour. Shadow size also plays a role. 5px seems to be effective, but 10px can wash the colour out.

    To apply the effect to a block element, you'll need to use the box-shadow property instead of the text-shadow property, but otherwise it's the the same.

    For more effects, you could apply opacity to make the text a little see through and see how that works out!

    If you find this useful, please check out my portfolio site.

    • Digg
    • del.icio.us
    • Reddit
    • Technorati
    • YahooMyWeb
    • StumbleUpon
    • SphereIt
    • Furl
    • Google
    • Facebook
    • Live

    This post has the following tags: , blurred, CSS, css3, effects, text

    This post was filed under the following categories: Code, Design

    First posted: 22nd Dec 2009 @ 15:41
    This post has been updated on 12 occassion(s):
    Last updated: 22nd Dec 2009 @ 16:10

    Further reading...

    Here are some articles that you might find interesting.

    The post Blurred text in CSS by Charanjit Chana is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 2.0 UK: England & Wales License. Permissions beyond the scope of this license may be available by getting in contact with the author.