I am trying to find an alternative to the webkit command:
-webkit-text-fill-color
As this isnt yet supported in moz o and ms anyone know of another command which can do this or some sort of css hack i can use to get this effect?
Basically what im doing is making the text invisible, setting the background gradient invisible except where the text is and making that background show through to make a purely css gradiented text. anyone have any ideas? this is how i got it done with webkit:
background-image: -webkit-linear-gradient(top, #3e698c, #30576e);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
It works great in safari/chrome (duh :P ) but not in ie ff opera maxthon etc etc.