0

IE7/8 のアンカー ボタンの丸みを帯びた角とグラデーションの背景に CSS3 PIE を使用しています。IE8 では、丸みを帯びた角にのみ PIE が適用されますが、グラデーション カラーは適用されず、1 ピクセルの丸みを帯びた境界線の角を持つボタンのみがレンダリングされます。そして、モーダルでこのボタンを使用する場合にのみ、この問題に直面しています。

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 を適用しようとしましたが、何の役にも立ちませんでした。

4

1 に答える 1