0

我正在使用下面的代码来获得标题标签的光泽外观。它在 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);
}
4

1 回答 1

1

请参阅此页面上的“注释”和“资源”:http: //caniuse.com/#feat=css-gradients。较旧的 IE 不支持 css3 渐变,但如果它对您来说足够重要,则有一些解决方法。我个人会在 IE 中使用“无光泽”外观。

http://css3pie.com/是在 IE 中模拟支持的一种选择。

于 2013-10-10T17:26:54.300 回答