I wanted to have a round table corner inside the Asp.net HTML pages ,so I wrote the following HTML code to be visible in Chrome & Mozila and also IE (I am using IE9).
<style type="text/css">.round{-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}
</style>
Every thing is right except in IE9 .What’s the problem .
Your code is fine. IE9 uses the unpredixed border-radius.
http://caniuse.com/#feat=border-radius
Add this to your
<head>This should make sure IE9 runs border-radius.