我正在尝试在我的网站中使用 CSS PIE,但由于某种原因它无法正常工作。
我的文件夹结构如下所示:
我的CSS是这样的:
.region-sidebar-first-inner .block-menu-block-1 {
background: #730868;
margin-bottom: 70px;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#730868), to(#0a9f9d));
background: -webkit-linear-gradient(top, #730868 0%, #0e70a2 76%,#0a9f9d 100%);
background: -moz-linear-gradient(top, #730868 0%, #0e70a2 76%,#0a9f9d 100%);
background: -ms-linear-gradient(top, #730868 0%, #0e70a2 76%,#0a9f9d 100%);
background: -o-linear-gradient(top, #730868 0%, #0e70a2 76%,#0a9f9d 100%);
background: linear-gradient(top, #730868 0%, #0e70a2 76%,#0a9f9d 100%);
-pie-background: linear-gradient(top, #730868 0%, #0e70a2 76%,#0a9f9d 100%);
behavior: url(pie/PIE.htc);
}
当我在 Chrome 中检查我的PIE.htc
-file 时,路径链接到正确的文件,因此它是有效路径。
尽管 CSS Pie 警告我Note: this path is relative to the HTML file being viewed, not the CSS file it is called from
,但这对我也不起作用......所以其他东西一定是错的,我不知道是什么。