How can I get gradient text in mozilla without using images and only by using css
just like we can achieve gradient text using the below css code background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#eef109));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
just like we can achieve gradient text using the below css code
background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#eef109));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
All Replies (3)
See:
- https://developer.mozilla.org/en/CSS/linear-gradient
- https://developer.mozilla.org/en/CSS/radial-gradient
- https://developer.mozilla.org/en/CSS/-moz-box-shadow
- https://developer.mozilla.org/en/CSS/text-shadow
Modified
I just want to give a gradient color to my text in a div with no background color.How can I achieve it?
See:
Modified