我有一个 div.outer 包装我的内容,并有一个渐变背景。我可以看到 PIE.htc 正在加载(它在 index.html 所在的根目录中),但是没有发生 CSS3 效果。
.outer{
height: 100%;
position: relative;
z-index: 0;
background: #063A5F; /*fallback for non-CSS3 browsers*/
background: -webkit-gradient(linear, 0 0, 0 100%, from(#063A5F) to(#063A5F)); /*old webkit*/
background: -webkit-linear-gradient(top, #4189CC, #063A5F); /*newer webkit*/
background: -moz-linear-gradient(top, #4189CC, #063A5F); /*old gecko*/
background: -o-linear-gradient(top, #4189CC, #063A5F); /*opera 11.10+*/
background: linear-gradient(to bottom, #063A5F, #4189CC);
-pie-background: linear-gradient(to bottom, #063A5F, #4189CC); /*ie 6-9 via PIE*/
behavior: url(PIE.htc);
}
当前站点可在此处获得
我已经尝试过 z-index 问题,但也许我做错了:)
我也遇到了边界半径未应用于我的锚标签的问题。
.btn{
border-radius: 5px 5px 5px 5px;
behavior: url(PIE.htc);
}
任何帮助是极大的赞赏!