I just starting to use linear gradients. From what I see, using them means also adding extra formatting to accommodate different browsers. How does a person convert from one format to another? If you look at my sample page in Safari and FireFox, you will see the linear gradient does not render in FireFox. How do I convert the CSS property that works Safari so it also works in FireFox? I realize I have to have both properties included in the rule.
Use this on-line gradient generator.
http://www.colorzilla.com/gradient-editor/
It will generate the code you need for various browsers (mozilla, webkit, opera, msie and filters for older IE).
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media Specialists
IE filters do not support multiple start and stop colors. You have the same hex #color in startColor and endColor. That's why you don't see a gradient in IE9.
Change this:
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66a7c5', endColorstr='#66a7c5',GradientType=0 ); /* IE6-9 */
To this:
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66a7c5', endColorstr='#92C3DA',GradientType=0 )
Nancy O.
North America
Europe, Middle East and Africa
Asia Pacific