Curve border is working on Firefox ,Google Chrome but not working on IE?any idea how to do make it work ?
-moz-border-radius-bottomleft:2px;
-moz-border-radius-bottomright:92px;
-moz-border-radius-topleft:92px;
-moz-border-radius-topright:2px;
-webkit-border-bottom-left-radius: 2px;
-webkit-border-bottom-right-radius: 92px;
-webkit-border-top-left-radius: 92px;
-webkit-border-top-right-radius: 2px;
Unfortunately IE6-IE8 do not support rounded borders. Instead you would need to use something like CSS3PIE.
IE9 however DOES understand
border-radiusUpdate further to comment that it ‘won’t work’ – here is a quick step-by-step (this is a very simple, high-level sample.
Lets say you have a div with the id of foo:
Your CSS for this could be:
You simply need to add one more rule to the bottom of that CSS, as follows
behavior: url(/PIE.htc);This will cause CSS3 to apply your border-radius rules to IE6-8.