
Border radius top left and top right only, in IE
Hi,
I have this code:
Code:
-webkit-border-top-left-radius: 20px;
-moz-border-radius-topleft: 20px;
-webkit-border-top-right-radius: 20px;
-moz-border-radius-topright: 20px;
border-radius 20px 20px 0px 0px;
behavior: url(http://www.mydomain.com/PIE.htc);
It works in Firefox/Webkit etc but not in IE. CSS Pie definitely works as I have it set on other rules and it's working nicely, so it seems to be just an issue with the top-left and top-right values in IE. From what I've read I thought that the way to do this was definitely using CSS shorthand, as I've done.
Thanks for any pointers...