-3

为什么 Border Radius 不支持 chrome 和 IE10。你能给出任何解决方案吗请我的代码

/* Rounded Corner */
.tb5 {

    border-radius:10px;
    height: 18px;
    width: 230px;
     border: 3px solid #BADA55;

     /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 12px; 

  /* Firefox 1-3.6 */
  -moz-border-radius: 12px; 

  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  border-radius: 12px; 

}
4

2 回答 2

2

应该在每个浏览器的最新版本中都能正常工作,即使没有前缀(source)。你确定你的目标是正确的 HTML 元素吗?

<div class="tb5">
    <p>Something here...</p>
</div>
于 2013-03-27T07:37:30.003 回答
0

请尝试-ms-border-radius:12px;

于 2013-03-27T07:25:05.333 回答