3

我正在尝试在我的 asp.net mvc 3.0 应用程序中使用 CSS3Pie 但在 IE 版本的情人超过 9 中,边框完全消失了。这是我的CSS

.box
{
    margin:auto;
    display:table;
    text-align:center;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border: 1px solid #86b0ca;
    margin:10px 0 10px 0;
    behavior: url("/Scripts/htc/PIE.htc"); /*if i remove that the border not disappeared but square in old IE versions*/
}
4

1 回答 1

5

添加position:relative到此框中,然后去阅读文档!

http://css3pie.com/documentation/known-issues/有一个部分解释了为什么需要这样做,我不确定为什么它不在入门指南中。

于 2011-09-08T17:24:58.913 回答