我需要一个带有圆角的容器“DIV”。以下代码可在除我的 IE10 之外的所有浏览器上完美运行。我不知道该怎么做才能使它工作。
#about-kader {
width: 200px;
height: 180px;
float: left;
margin: 0px auto;
background-color: #9bafc4;
padding: 3px;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
-ms-border-radius: 5px;
behavior: url(border-radius.htc);
}
这是HTML部分,请:
<div id="about-kader">
...
...
...
</div>
无法在 IE10 上显示任何圆角。我拥有的版本是:10.0.9200.16576,更新版本:10.0.5 (KB289530)。