我为测试目的编写了一个简单的 html/css,但我无法让库工作。我已将 .htc、.php 和 .js 文件移动到 index.html 的同一目录,但它根本不起作用。
所有文件都在 index.html 的同一目录中,可以通过 URL 访问,我相信这应该足够了。我已经尝试将行为标签和位置:相对,z-index:0 放在 css 文件中,但 IE 看不到这些属性。
代码:HTML
<link rel="stylesheet" type="text/css" href="index.css">
<script src='jquery.js'></script>
<script src='PIE.js'></script>
<body>
<div>test</div>
</body>
CSS:
div {
float: left;
position: relative;
z-index: 0;
width: 300px;
height: 300px;
-webkit-border-radius: 10px;
-moz-borderradius: 10px;
border-radius: 10px;
-pie-box-shadow: 1px 1px 10px #000;
box-shadow: 1px 1px 10px #000;
behavior: url(PIE.htc);
background-color: red;
}