it is possible to style a background with gradients like: background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc));

Is there a way to style text with gradients?I've been looking for sth like: color-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc));but wasn't able to find anything simple.

Thanks for your help.

link|improve this question

50% accept rate
feedback

2 Answers

up vote 0 down vote accepted

its not possible with pure CSS unless you use a image to cover the font: http://www.webdesignerwall.com/tutorials/css-gradient-text-effect/ You could use the same technique but use a color to transparent gradient in the overlay element.

here is an example with pure CSS and an additional element: http://jsfiddle.net/Lub7z/

link|improve this answer
That was the answer I was afraid of :-) I'll mark it as answered asap. – Teleport Nov 30 '10 at 9:57
feedback

It IS possible. You just have to combine a background-image with a background-clip: text: See this most excellent example here.

background: url(/bgclip/img/paint.png) repeat, white;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
link|improve this answer
sure but its webkit only atm. – meo Dec 1 '10 at 10:11
feedback

Your Answer

 
or
required, but never shown

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