Firefox 3.6 allows to set gradient on backgrounds.
Is that possible to set gradient on the text color as well ?
HTML:
<span>Hello</span>
CSS:
body {
background: -moz-linear-gradient(left, red, white);
}
span {
font-size: 13em;
color: #222;
}
I would like to "replace" #222
with -moz-linear-gradient(left, white, blue);
, for example.
Is there any way to do this ?