I'm Envious of the nice ASP.NET gradient toolbars

  • Thread starter Thread starter Guest
  • Start date Start date
Dotnet Wanderer said:
This is a call for help on how to create those beautiful looking gradient
tool bars like this

Do you mean an HTML <table> tag with a class attribute that points to a
CSS class containing a style rule like,

background-image:url(./images/bgGradient.gif);

where bgGradient.gif is a 1-px wide strip with a vertical gradient fill?


Derek Harmon
 
A simple look at their source code shows:

<td id="msviRegionGradient1" width="50%"
style="filter:progid:DXImageTransform.Microsoft.Gradient(startColorStr='#FFFFFF',
endColorStr='#98B2E6', gradientType='1')"></td>
 
Back
Top