In that same CSS rule, add the following style line:

behavior: url(path/to/PIE.htc);

Of course you will need to adjust the path to match where you uploaded PIE.htc in step 2. Note: this path is relative to the HTML file being viewed, not the CSS file it is called from.

but if my url is domain.com/foo/foo.html PIE.htc is not loaded any more if i use

behavior: url(PIE.htc); 

PIE.htc is located in root. Can i somehow always call .htc file from root?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

URIs starting with a / are relative to the site root.

link|improve this answer
i try but not working – senzacionale Jun 10 '11 at 6:47
Starting with a / should work. You probably are miscalculating the actual path to the file. – Quentin Jun 10 '11 at 9:11
The "root of the web page" is <html>, which is meaningless. In a URL / means the root of the website, and you can construct the rest of your URL from there. It is not home page specific. – Quentin Jun 10 '11 at 10:33
i restart IIS and now working. STRANGE thx for help – senzacionale Jun 10 '11 at 11:12
feedback

As we know The behavior property requires the URI to the HTC file to be specified using the url() syntax. Multiple HTC files can be referenced with a space-delimited list. so suppose your csshover.htc file is in csshover directory and you can reference multiple htc file or specially same file but from different directories like behavior:url('csshover/csshover.htc') url('../csshover/csshover.htc') url('../../csshover/csshover.htc') url('../../../csshover/csshover.htc'); and so on. thanks pradeep lakhina Drey Heights Infotech Pvt Ltd.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.