phpcss.htaccesscodeignitercss3pie

CSS3 pie not working in codeigniter


I have implemented the css3pie in view like this:

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

    }

this is not working for me even i edit the .htaccess in /public_html/.htaccess to:

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

Thank you very much for answering


Solution

  • The .htaccess has been set incorrect level .htaccess and i have fixed it.

    Need to set .htaccess level:

    public_html/.htaccess

    public_html/CSS3PIE/.htaccess