After running the following code below, it appears that the linear gradient is not functioning properly in IE6 to IE8.
background-image: linear-gradient(45deg, white 0%, gray 50%, black 100%);
I attempted to resolve this issue by adding the code snippet below to my CSS. Although this adjustment works for IE10, it fails to work in IE6 to IE8.
background-image: -ms-linear-gradient(45deg, white 0%, gray 50%, black 100%);
How can I achieve a proper display of the linear gradient at 45 degrees in IE8?