Applying background-clip to text is effective on most browsers, except for IE!
.main-menu .nav li a {
font-family: freight-big-pro, serif;
font-size: 4rem;
font-weight: 400;
color: #0f0e0e;
text-decoration: none;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
background-image: -webkit-gradient(linear, left bottom, left top, from(#cfac7e), color-stop(50%, #cfac7e), color-stop(50%, #0f0e0e));
background-image: linear-gradient(0deg, #cfac7e, #cfac7e 50%, #0f0e0e 50%);
background-size: 100% 200%;
background-position: 0% 0%;
}
In IE11, the text appears as a black box with illegible text, although the animation itself functions without clipping.
Since background-clip doesn't work on text in IE, is there a way to disable this specifically for IE?