I have used the following css code in order to provide rounded div corners through css. border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; The rounded corners are appearing in mozilla but IE is showing no response to this. What's the solution? How can I create rounded corners in IE through CSS?
border-radius is available in IE9! http://msdn.microsoft.com/en-us/library/cc351024(VS.85).aspx#border
.htc does work, but it's not great in my experience - it depends on the layout design whether it's appropriate to use or not. There are a number of Javascript solutions that will add rounding to IE only if called inside conditional comments. Depending whether you're using a Javascript library, which one, or not at all, will determine which script/plugin is your best option. eg jQuery corners
I used to make use of javacode that helped with IE, but the latest version of IE supports border radius, as in css 3.0 My advice is to skip out IE for stuff like rounded corners