I am trying to create a linear gradient background for my website that is compatible with IE8.
I want the IE8 equivalent of:
background: radial-gradient(#198548,#FFFFFF) no-repeat fixed center;
I managed to create a linear gradient with:
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#198548', EndColorStr='#FFFFFF');
However, I need it to be no-repeat fixed center since my page extends as I scroll the page (paging). Whenever this happens, the background eventually turns completely white.
Any help with this will be greatly appreciated.
Thanks!