CSS3 pie 在 codeigniter 中不工作

CSS3 pie not working in codeigniter

我在视图中实现了这样的 css3pie:

.abc{
        behavior: url("./assets/../../PIE.htc");
        background-color: yellow;
        border: 0px solid;
        border-radius: 17px;
        box-shadow: 5px 5px 1px #999999;

    }

这对我不起作用,即使我将 /public_html/.htaccess 中的 .htaccess 编辑为:

CheckSpelling On
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php/ [L]
AddType text/x-component .htc

非常感谢您的回答

肯定是路径问题。

您是否尝试过直接导航到 url(在地址栏中)以确保您可以访问它?尝试将它放在与您的 CSS 文件相同的目录中。

很多元素在使用 PIE 时需要 position:relative 或 zoom:1 才能在 IE 中运行,确保您检查已知问题页面并尝试直到它可以工作。

.htaccess 的 .htaccess 级别设置不正确,我已经修复了它。

需要设置.htaccess级别:

public_html/.htaccess

public_html/CSS3PIE/.htaccess