0

我有这个简单的代码:

<html style = "height: 100%;">
    <head>
        <meta http-equiv = 'Content-Type' content = 'text/html; charset = windows-1251' />
        <title>test bg</title>
    </head>

    <body style = "height: 100%; margin: 0px;">
        <div id = 'div_0' style = "width: 100%; height: 100%; background-size: contain; -ms-behavior: url(backgroundsize.htc); background-repeat: no-repeat; background-position: center center; background-image: url(storage/zast_800x600.jpg);"></div>
    </body>
</html>

加载页面时没有任何错误。但是背景的行为与没有这个东西一样。

.htaccess并且backgroundsize.htc与html页面在同一个文件夹中。我通过双击 html 页面在本地运行此文件。

在此处输入图像描述

我使用PolyFill作为参考

4

1 回答 1

2

.htaccess不会在您的 Windows 文件系统中执行任何操作,例如将具有正确 MIME 类型的文件提供给 IE,这是.htc文件执行任何操作所必需的。您需要将它放在正在运行的 Apache 服务器中;它是服务器要执行的指令列表。

如果您无法访问开发服务器或其他已经建立的服务器,您可以尝试WAMP或其他让本地 Apache 服务器运行的方法。

事实证明,真正的答案是在其他地方的 GitHub 上找到的。提问者没有在标准模式下运行,导致ms-behavior:声明失败;怪癖模式仅识别behavior:.

于 2014-08-18T04:07:17.903 回答