目前而言firefox,opera,chrome等主流浏览器都已经支持border-radius属性,唯独ie8以及之前。
解决办法就是在用的border-radius属性的后面加上:behavior: url(ie-css3.htc);
xml/html code复制内容到剪贴板
nbsp;html>      html lang=en>      head>          meta charset=utf-8>          title>border-radius兼容ietitle>          style>              .d1{                   width: 5em;                   height:5em;                   background: #e4393c;                   /*防止浏览器版本过低*/                   -moz-border-radius: 50%;                   -webkit-border-radius: 50%;                   border-radius: 50%;                   /*解决ie*/                   behavior: url(ie-css3.htc);               }           style>      head>      body>          div class=d1>div>      body>      html>
以上这篇浅析border-radius如何兼容ie就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
   
 
   