- This topic is empty.
-
AuthorPosts
-
April 20, 2012 at 11:03 am #101472
StevenBullen
MemberOk I have simplified it down to a basic shell. Test this on your web server and see if it works. EDIT: I forgot to mention that this was using what @karlpcrowley recommended first of all
If this does not work then it might be the way the file is being requested from the server. Basically instead of text/x-component it might be requested as a text/html which will cause it not to work.
You can fix this problem one of two ways….
1st I have added a file called ie-css3.php which requests the file with the correct headers.
Just changebehavior: url(ie-css3.htc)
for
behavior: url(ie-css3.php)
2nd You can add an .htaccess file that does it for you which I have also added.
If it’s not working then I am stumped. :)
October 12, 2012 at 4:34 pm #111763ray
Participanthey
StevenBullen,
its worked very well :)February 22, 2013 at 2:49 am #125651samkat
MemberAfter some tries I found one thing
It does not work for id but it works very well with classI mean
#rounded_corners {
behavior: url(ie-css3.htc)
} //does not work.rounded_corners {
behavior: url(ie-css3.htc)
} //works perfectlyFebruary 22, 2013 at 3:43 am #125653Kitty Giraudel
ParticipantPlease don’t do this. Loading kilobytes of polyfills for aesthetics reasons is not good UX.
March 6, 2013 at 1:47 am #127151dihanalex
MemberDear al my friends, i am new member css-tricks.
please any body help me?
I also face the same problem and I made a css3 border radius in IE6,7,8 and 9 does not supported.
any body please give sample complete document or ready file.please any body help me.
thanks by
dihan
[email protected]March 6, 2013 at 5:25 am #127156Paulie_D
MemberIE9 does support border-radius.
I wouldn’t bother with it in lower versions as the various solutions all have their faults.
However, if you must then…
https://code.google.com/p/jquerycurvycorners/
Or
March 6, 2013 at 11:10 am #127192Kitty Giraudel
ParticipantOnce again: please don’t do this.
April 10, 2013 at 3:31 am #131210shankarkhanal
MemberThe W3C CSS Validation Service
Property behavior doesn’t exist : url(js/PIE.htc)
why?April 10, 2013 at 3:49 am #131211CrocoDillon
ParticipantBecause it’s not part of the standard, but an IE legacy thing. http://reference.sitepoint.com/css/behavior
April 15, 2013 at 9:11 am #131824diyafury
MemberI’m using csspie with no issues in a LESS mixin for border-radius. Works like a charm… I have come across one issue…
I have an border radius on a parent element with a grey background colour and it’s child with a white background colour… The issue that I’m having is that after pie runs, the white background of the child element disappears. When I hover the parent element, the child element changes its background-colour, so I’m confident it’s not the css. It seems to be an issue with pie.htc… has anyone come across this issue and have very cleverly devised a handy fix?
April 15, 2013 at 9:13 am #131826diyafury
MemberApologies for that first sentence…. ignore ‘with no issues’ ;) And… the child element also have border-radius (pie.htc behaviour) applied.
April 15, 2013 at 9:19 am #131828diyafury
MemberHi guys..
It’s a know issue with static positioned elements: http://css3pie.com/documentation/known-issues/ , change the nested child element to position:relative fixed it.
Cheers
-
AuthorPosts
- The forum ‘CSS’ is closed to new topics and replies.