すべてのブラウザーの css:
.bordering {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: #A3815B 0px 1px 3px;
-moz-box-shadow: #A3815B 0px 1px 3px;
box-shadow: #A3815B 0px 1px 3px;
}
IE の CSS:
.bordering {
border: 1px solid #A3815B;
}
.bordering
すべてのブラウザのCSSからクラスを削除すると、その境界線は正常に機能しますIE
。
やり方は、一度に他のものと一般的なものでbox-shadow
動作します。FF,Opera
border
IE
試した:
.bordering {
-webkit-border-radius: none;
-moz-border-radius: none;
border-radius: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
役に立ちませんでした。