我在做前台是 发现 CSS 3 很多都不呈现在前台,如 border-radius:n px; 请问 xiyou 哥 ,这个如何去修复?
IE10模式下:

chorme下:


如:代码
.banner{clear:both;margin:10px auto;padding:2px 0px;text-align:center;
width:980px;
background: white;
border: 1px solid;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
border-color: #E5E5E5 #DBDBDB #D2D2D2;
box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
-moz-box-shadow: rgba(0,0,0,0.3) 0 1px 3px;
display:inline-block;
overflow:hidden;
}
.banner:nth-child(1n) {
border: none;
}
,我发现是 <meta http-equiv="x-ua-compatible" content="ie=7" /> 这个的问题!
xiyou 哥 能否建议 把这个改一下?
<meta http-equiv="x-ua-compatible" content="ie=7,ie=9" />如果自己改的话 如何更改?