I have a div that I want to display as a small colored circle. I added rounded corners using the border-radius property, which of course works perfectly in Firefox, Chrome, and even IE9, but not earlier versions of IE. I am trying to use CSSPIE to render the rounded corners in earlier versions of IE. I downloaded PIE.htc and saved it in my css folder.
This is the gist of my css:
width: 25px;
height: 25px;
background-color: red;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
border-radius: 50px;
behavior: url(/PIE.htc);
However, the div is still displaying in IE7 and 8 as a red square instead of a circle. What am I doing wrong?