I recently obtained this code after compiling a bootstrap gradient less mixin:
html, body {
height: 100%;
background-image: -webkit-linear-gradient(top, rgba(108, 91, 123, 0.8) 0%, rgba(53, 92, 125, 0.8) 100%);
background-image: -o-linear-gradient(top, rgba(108, 91, 123, 0.8) 0%, rgba(53, 92, 125, 0.8) 100%);
background-image: linear-gradient(to bottom, rgba(108, 91, 123, 0.8) 0%, rgba(53, 92, 125, 0.8) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cc6c5b7b', endColorstr='#cc355c7d', GradientType=0);
}
This code functions properly in most browsers, including IE 10+, but not in IE9.
I am uncertain whether Bootstrap gradient mixins are expected to be compatible with IE9 or if there is an issue with my code?