Diagonal Gradient in IE

Is there a way to have a diagonal gradient in IE? In Chrome I could do something like this:

body{
    background-image:-webkit-gradient(
    linear,
    left top,
    right bottom,
    color-stop(0%,#f00),
    color-stop(50%,#0f0),
    color-stop(100%,#00f));
}

but this doesn't work in IE.

11
задан yoozer8 6 October 2011 в 21:27
поделиться