Rounded corners display fine in Google Chrome, but not in IE9.
This is my css code:
.post-labels{
position:relative;
float:right;
text-align:right;
border-style:solid;
border-color:#452C28;
padding:10px;
background-color:#F0ECD5;
border-radius:15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
-goog-ms-border-radius: 15px}
I've tried adding the meta tags:
<meta content='IE=edge' http-equiv='X-UA-Compatible'/>
<meta content='IE=9' http-equiv='X-UA-Compatible'/>
and still nothing. What am I doing wrong?