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
Best solution at the moment is to use a solid color as non-webkit fallback and then use the following technique ( requires webkit ):
h1 { color: $333; font-size: 72px; background: -webkit-linear-gradient(#eee, #333); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
Example