我正在使用下面的代码来获得标题标签的光泽外观。它在 FF、Chrome 和 IE10 中运行良好。但是在 IE7、8、9 等较低版本的 IE 中加载时。失去光泽。任何人都可以帮助我在标题上获得光泽吗?请参阅下面的图片了解光泽外观和正常外观。
光面页眉
普通页眉
.docTitle
{
font-weight: bold;
width: 99.3%;
font: bold 12px/100% Arial,Verdana,helvetica;
padding: 8px 5px;
text-decoration: none;
color: rgb(255, 255, 255);
text-shadow: 0 -1px 0 rgba(0,0,0,.9);
background: #255182;
background: -webkit-linear-gradient(top, #2f4f88, #385993 49%, #21427d 50%, #255182);
background: -moz-linear-gradient(top, #2f4f88, #385993 49%, #21427d 50%, #255182);
background: -ms-linear-gradient(top, #2f4f88, #385993 49%, #21427d 50%, #255182);
background: -o-linear-gradient(top, #2f4f88, #385993 49%, #21427d 50%, #255182);
background: linear-gradient(to bottom, #2f4f88, #385993 49%, #21427d 50%, #255182);
}