Gradient Background using Css

<html>
<
head runat="server">
<title>Gradient Background</title>
<style type="text/css">
.
Gradient
{
border: solid 1px #336699;
border-collapse: collapse;
background-color: White;
margin-bottom: 6px;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=green, endColorstr=red);
}
</style>
</
head>
<
body>
<form id="form1" runat="server">
<table height="150" width="300" class="Gradient">
<tr>
<td>
</td>
</tr>
</table>
</form>
</
body>
</
html>