I noticed in the Bootstrap CSS that there are many instances of Internet Explorer gradient properties like this one:
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); However, half of the time that property appears, there is another property disabling it for the same selector, like this: filter: progid:dximagetransform.microsoft.gradient(enabled=false); Why is that?
