I created a gradient class for text. It works nicely in google chrome but in firefox and internet explorer it doesn't. In these browsers there is an actual background gradient visible behind the text which I don't want.
I created a fiddle where this browser-different behavior can be perceived.
https://jsfiddle.net/Lzhvsowq/
<h1 class="gradient_blue" style="font-size: 60px;">Lorem Ipsum Lorem Ipsum</h1>
.gradient_blue {
color: #288cc7;
display: inline-block;
background-color: #288cc7;
background-image: -webkit-linear-gradient(left, #288cc7 0%, #206e9b 100%);
background-image: -o-linear-gradient(left, #288cc7 0%, #206e9b 100%);
background-image: linear-gradient(to right, #288cc7 0%, #206e9b 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#288cc7', endColorstr='#206e9b', GradientType=1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
Any help appreciated!