圆角在 Google Chrome 中显示正常,但在 IE9 中不显示。
这是我的 CSS 代码:
.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}
我尝试添加元标记:
<meta content='IE=edge' http-equiv='X-UA-Compatible'/>
<meta content='IE=9' http-equiv='X-UA-Compatible'/>
仍然没有。我究竟做错了什么?