Is there a way to create a cross-browser, pure CSS3 text color gradient?
So, no png\'s. No \'webkit\' only.
EDIT: To be mo
There is no cross-browser way to do this outside webkit because only webkit currently has a background-clip: text, and this extension to background-clip is not on standards track (as far as I am aware). If you want to relax your CSS3 requirement, you can accomplish the same effect cross-browser with Canvas (or SVG), but then you're talking about HTML5-capable browsers only.