CSS
h1 {
font-size: 72px;
background: -webkit-linear-gradient(#eee, #333);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
HTML
<h1>Hello World</h1>
I see the 'Hello World' text with the gradient in chrome browser. Even though I add other prefixers such as -moz,-mo I don't see it in firefox or opera or IE. What could be the issue?