I Googled this but couldn't find a solution. I'm applying corner-radius to my divs but IE9 doesn't show the effect.
CSS:
.ipleft {
width: 512px;
height:300px;
-webkit-border-radius: 10px 0px 0px 10px;
-khtml-border-radius: 10px 0px 0px 10px;
-moz-border-radius: 10px 0px 0px 10px;
border-radius: 10px 0px 0px 10px;
background-image: url(images/ipleft.png);
float: left;}
.ipright {
width: 512px;
position: relative;
height:300px;
-webkit-border-radius: 0px 10px 10px 0px;
-khtml-border-radius: 0px 10px 10px 0px;
-moz-border-radius: 0px 10px 10px 0px;
border-radius: 0px 10px 10px 0px;
background-image: url(images/ipright.png);
float: right;}
I added the appropriate meta tag and it's still not working! The site is www.campusonsale.com. If you take a look with FF the rounded corners are applied without a problem, but IE9 is showing rectangular corners!