I am trying to add rounded border to my div. In firefox it is working. On Net i found this link http://www.htmlremix.com/css/curved-corner-border-radius-cross-browser. I have adding the htc file. I included it in the root, as well as my css folder but it is not working on IE. Here what i am doing
position:absolute;
border:1px solid #ccc;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
behavior: url(css/border-radius.htc); url(border-radius.htc); //both not working
background: rgb(180,221,180); /* Old browsers */
Why it is not working in IE?