我在 IE9 中有以下提交按钮:
我使用的 CSS 如下:
.button,
input[type='button'],
input[type='submit'] {
text-decoration: none;
background: #eee;
color: #89a9d1;
padding: 4px 10px;
font-weight: bold;
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#fff', endColorstr='#eee')";
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
background: -moz-linear-gradient(top, #fff, #eee);
}
根据我在此页面上的了解:http: //www.colorzilla.com/gradient-editor/这应该可以工作......我无法弄清楚蓝色来自哪里。如果我取消选择影响此元素的所有样式,使用 IE 开发人员工具栏它仍然显示看起来像我附加的图像。
有人对可能导致这种情况的原因有任何建议吗?