How do I set gradient for IE, because I was trying but without any luck, I got it working on chrome, firefox, opera but not in IE
html, body {
height: 100%;
background-image: -ms-linear-gradient(top, #BDE25E 0%, #8BB31D 100%);
background-image: -moz-linear-gradient(top, #BDE25E 0%, #8BB31D 100%);
background-image: -o-linear-gradient(top, #BDE25E 0%, #8BB31D 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #BDE25E), color-stop(1, #8BB31D));
background-image: -webkit-linear-gradient(top, #BDE25E 0%, #8BB31D 100%);
background-image: linear-gradient(to bottom, #BDE25E 0%, #8BB31D 100%);
background-repeat: no-repeat;
background-attachment: fixed;
font-family:Tahoma, Geneva, sans-serif;
color:#FFFFFF;
font-size:11px;
}
But when I launch it in IE, I get white background instead of green gradient.
