我在 IE7/8 上使用 CSS3 PIE 作为圆角和渐变背景作为锚按钮。在 IE8 上,PIE 仅适用于圆角,但渐变色不会出现,只有带有 1px 圆角边框的按钮正在渲染。只有当我在模态中使用这个按钮时,我才会面临这个问题。
a.button {
border: 1px solid #238cbf;
cursor: pointer;
background-color: #3a98c4;
background-image: -webkit-gradient(linear, top, bottom, from(#3a98c4), to(#047ab8));
background-image: -webkit-linear-gradient( top, #3a98c4, #047ab8);
background-image: -moz-linear-gradient( top, #3a98c4, #047ab8);
background-image: -ms-linear-gradient( top, #3a98c4, #047ab8);
border-radius: 4px; /* Opera 10.5,
box-shadow: 0 1px 1px #444; /* Opera 10.5, IE9, FF4+, Chrome 10+ */
color: #fff;
font-size: 12px;
display: inline-block;
}
a.button {
-pie-background: linear-gradient(#3a98c4, #047ab8);
-ms-behavior: url(/pie/PIE.htc);
}
我尝试应用 position:relative 和 z-index 但没有任何帮助。