浅析border-radius如何兼容IE
程序员文章站
2023-01-11 09:28:17
border-radius如何兼容IE呢?下面小编就为大家介绍一下border-radius兼容IE的方法。一起跟随小编过来看看吧,祝大家游戏愉快哦... 16-04-19...
目前而言firefox,opera,chrome等主流浏览器都已经支持border-radius属性,唯独ie8以及之前。
解决办法就是在用的border-radius属性的后面加上:behavior: url(ie-css3.htc);
xml/html code复制内容到剪贴板
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>border-radius兼容ie</title>
- <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就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: iOS开发教程之常见的性能优化技巧
下一篇: 车前子的功效,你知道多少
推荐阅读
-
IE11浏览器兼容性视图设置在哪里?如何设置?
-
浅析border-radius如何兼容IE
-
如何去除vue项目中的#及其ie9兼容性
-
vuecil3+版本下如何兼容谷歌ie等不支持es6的低版本浏览器
-
如何判断 IE 的真正版本(非兼容模式下的版本,IE8+)
-
如何解决hover在ie6中的兼容性问题
-
input输入框的border-radius属性在IE8下的完美兼容_html/css_WEB-ITnose
-
input输入框的border-radius属性在IE8下的完美兼容_html/css_WEB-ITnose
-
IE如何兼容placeholder属性_html/css_WEB-ITnose
-
border-radius IE8兼容处理方法介绍