web| gradient on the Microsoft China site found that the color gradient above the page is very good, view its source code, found within the <td> used similar to the following style:
Style= "Filter:progid:DXImageTransform.Microsoft.Gradient" (startcolorstr= ' #FFFFFF ', endcolorstr= ' #98B2E6 ', Gradienttype= ' 1 ') "
Then I wrote a test page and tried it, sure enough. The code is as follows:
<!---------------------------------------->
<title> Untitled Document </title>
<meta http-equiv= "Content-type" content= "text/html; charset=gb2312 ">
<body bgcolor= "#FFFFFF" text= "#000000" >
<table width= "border=" 0 "cellspacing=" 0 "cellpadding=" 0 "height=" "align=" center ">
<tr>
<TD style= "Filter:progid:DXImageTransform.Microsoft.Gradient" (startcolorstr= ' #FFFFFF ', endcolorstr= ' #98B2E6 ', Gradienttype= ' 1 ') > </td>
</tr>
</table>
</body>
<!---------------------------------------->