For my website, I'd like to incorporate gradient backgrounds specifically for Internet Explorer. I am aware of a proprietary method for achieving this:
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#20799d', EndColorStr='#5cb9df');
However, this method does not work well with border-radius
(which is supported by IE8 at least), and my site heavily relies on it.
Is there an alternative solution that would allow me to have gradient backgrounds without compromising the use of border-radius
? (I prefer not to simply exclude gradient backgrounds for older versions of IE.)