I use the following CSS bit to create a linear gradient of the background. It seems to work fine in IE8 / 9, FF, Safari and Chrome, but not in IE7. IE7 shows a solid (green) background. Here is my code
.menu_body a { display:block; color:#006699; background: #008800; background: -moz-linear-gradient(top, #0b71a4, #025f8e); background: -webkit-gradient(linear, left top, left bottom, from(#0b71a4), to(#025f8e)); filter: progid:DXImageTransform.Microsoft.Gradient( StartColorStr='#0b71a4', EndColorStr='#025f8e', GradientType=0); padding: 1px 18px; }
css internet-explorer-7 background gradient
Kiwi1
source share