I used .htc to make rounded corner on IE. it only working with http but it not working in mode https. please help me. Thanks Here is my code:

#main .sidebar .videos .grey-box {
  padding: 5px;
  margin: 5px 0;  
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  border-right: 1px solid #6C6C6C;
  border-bottom: 1px solid #6C6C6C;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  behavior: url(../border-radius.htc);
  background-color: #BBB;
  border: 2px inset;
}
link|improve this question

Is the .htc file on your server/domain? – alex Nov 26 '10 at 3:30
behavior: url(../border-radius.htc) – khanh Nov 26 '10 at 3:32
the file .htc on application – khanh Nov 26 '10 at 3:32
Please clarify your question. – EJP Nov 26 '10 at 3:34
What does a profiler say when it makes the request? Request aborted ? – alex Nov 26 '10 at 3:48
show 4 more comments
feedback

1 Answer

up vote 0 down vote accepted

two things to try:

try linking to the htc file using http://yourdomain.com/your-file.htc instead of the relative path.

also try this trick: http://paulirish.com/2010/the-protocol-relative-url/

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.