I have a problem with CSS3 gradients for IE11 i have something like this:
.shine
{
background: #222 -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff)) 0 0 no-repeat;
-webkit-background-size: 125px;
color: rgba(255, 255, 255, 0.1);
-webkit-background-clip: text;
-webkit-animation-name: shine;
-webkit-animation-duration: 4s;
-webkit-animation-iteration-count: infinite;
}
And it's not working for IE11, can you help me with fixing this? I tried with CSS3 manual but still not correct.