Check out this code snippet I have for customizing the background of a webpage:
body
{
font-family: "HelveticaNeue", Helvetica, Arial, sans-serif;
font-size: 12px;
background: -webkit-radial-gradient(50% 20%, circle farthest-side, transparent 0%, rgba(0, 0, 0, 0.6) 100%), url('../images/background.png');
background: radial-gradient(50% 20%, circle farthest-side, transparent 0%, rgba(0, 0, 0, 0.6) 100%), url('../images/background.png');
background: -moz-radial-gradient(50% 20%, circle farthest-side, transparent 0%, rgba(0, 0, 0, 0.6) 100%), url('../images/background.png');
background: -o-radial-gradient(50% 20%, circle farthest-side, transparent 0%, rgba(0, 0, 0, 0.6) 100%), url('../images/background.png');
background: -ms-radial-gradient(50% 20%, circle farthest-side, transparent 0%, rgba(0, 0, 0, 0.6) 100%), url('../images/background.png');
margin: 0;
padding: 0;
}
While it works fine on IE10 and above, do you know how we can modify it to also work on IE9 and IE8? JSFiddle
Your assistance is greatly appreciated.