I am using CSS3 border-radius styles in my webpage and I want it to be cross-browser compliant across major browsers including IE8.
Therefore, I am trying to use the border-radius.htc file to achieve this. Wherever in my css styles the border-radius is used, i have coded something like:
-webkit-border-radius: 6px 6px 6px 6px;
border-radius: 6px 6px 6px 6px;
behavior:url(border-radius.htc);
Unfortunately, when I check the webpage in IE8, all the backgrounds that have border-radius behavior end up not showing at all.
The webpage is at http://www.domainandseo.com/portfolio/dominos/index.html
Any suggestions would be highly appreciated.