Hi!
The CSS way is using text-shadow:

h1 {text-shadow: 3px 3px 3px #ccc}

Another way is using 2 wrappers:

<h1><span>Text</span></h1>

h1 span {
     position: relative;
    top: 3px;
    left: 3px;
    color: #ccc;
}

Finally, you can use image replacement and graphics:

h1 {
   background: url(text.png) no-repeat 0 0;
   text-indent: -1000em;
   height: value;
}

HTH ^^/

http://www.css-zibaldone.com
http://www.css-zibaldone.com/test/  (English)
http://www.css-zibaldone.com/articles/  (English)
http://onwebdev.blogspot.com/  (English)








______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to