CSS Gradient Text Effect

Want to create a fancy heading without creating an image in Photoshop?  Here is a simple CSS trick to create a gradient text effect with a PNG image (no javascript or Flash.)  It works on most browsers and it can save you some bandwidth.

The trick is very simple.  Basically we are just adding a 1px gradient PNG (with alpha transparency) over the text.  This is only suitable for solid background color elements and your gradient color must be the same color as your background color.

1.    First, create your PNG image. It needs to be 1px wide and if your gradient image is taller than the heading, the text will not be selectable.
2.     In your html, your code for your H1 header would look like this:

 

<h1><span></span>Your title would go here</h1>

3.     Then in your CSS, the sample code would look like this:

h1{
font: bold 330%/100% “Lucida Grande”;
position: relative;
color: #464646;
}

h1 span{
background: url(gradient.png) repeat-x;
position: absolute;
display: block;
width: 100%;
height: 31px;
}

4.     For IE6, PNG doesn’t render properly, so add this hack in the <head> tags of your html:

<!–[if lt IE 7]>
<style>
h1 span {
background: none;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’gradient.png’, sizingMethod=’scale’);
}
</style>

<![endif]–>

gradient_screenshot

And there you have it!  A cool gradient text effect done entirely in CSS.

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • NewsVine
  • Reddit
  • StumbleUpon
  • YahooMyWeb
  • Google Bookmarks
  • Yahoo! Buzz
  • TwitThis
  • Live
  • LinkedIn
  • Pownce
  • MySpace

3 Responses to “CSS Gradient Text Effect”

  1. [...] View original post here: Web Design Tips: CSS Gradient Text Effect [...]

  2. Mari says:

    Thanks for great article. I’ll bookmark it!

  3. ScriptoX says:

    Nice post..Keep them coming :) Thanks for sharing.

Leave a Reply

Spam Protection by WP-SpamFree