首先,我在把 ie 浏览器更新到 11 后,在 f12 调试工具中发现一片空白,解决方法如下:
安装补丁:
64位的系统应该使用下面这个补丁:Download Cumulative Security Update for Internet Explorer 11 for Windows 7 for x64-based Systems (KB3008923) from Official Microsoft Download Center
32位的系统应该使用下面这个补丁:Download 用于 Windows 7 的 Internet Explorer 11 累积安全更新程序 (KB3008923) from Official Microsoft Download Center
css 兼容 ie 的以下方法。
一、以插件形式的兼容方法
1、首先去除各浏览器差异,或使用如下插件,或使用自己所编写的 reset.css 文件
<link href=”https://cdn.bootcss.com/normalize/7.0.0/normalize.min.css” rel=”stylesheet”>
2、解决 ie9 以下浏览器对 html5 新增标签不识别的问题。
<!–[if lt IE 9]>
<script type=”text/javascript” src=”https://cdn.bootcss.com/html5shiv/3.7.3/html5shiv.min.js”>
</script>
<![endif]–>
3、解决 ie9 以下浏览器不支持 CSS3 Media Query 的问题
<script src=”https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js”> </script>
二、兼容性书写
1、兼容前缀
-
-o-transform:rotate(7deg); // Opera
-
-ms-transform:rotate(7deg); // IE
-
-moz-transform:rotate(7deg); // Firefox
-
-webkit-transform:rotate(7deg); // Chrome
-
transform:rotate(7deg); // 统一标识语句
2、解决 Placeholder
<input type=”text” value=”Name *” onFocus=”this.value = ”;” onBlur=”if (this.value == ”) {this.value = ‘Name *’;}”>
3、解决 IE9 以下浏览器不能使用 opacity
-
opacity: 0.5;
-
filter: alpha(opacity = 50);
-
filter: progid:DXImageTransform.Microsoft.Alpha(opacity = 50);
更多兼容性解决方法:没有IE就没有伤害!浏览器兼容性问题解决方案汇总
三、css hack
1、条件 hack
语法:
<!–[if <keywords> IE <version>]>
HTML代码块
<![endif]–>
注:条件 hack 只在 ie 10 以下有效
详情:http://www.css88.com/book/css/hack/conditions.htm
2、属性级 hack
语法: selector{<hack> property:value<hack> ;}
eg: *color: #ff0; 或 color: #ff0\9;
详情:http://www.css88.com/book/css/hack/properties.htm
3、选择符级 hack
语法:<hack> selector{ sRules }
详情:http://www.css88.com/book/css/hack/selectors.htm
更多css hack 标识符见:css hack_百度百科
四、hack 的应用情景及技巧
https://www.duitang.com/static/csshack.html
今天的文章css——兼容 ie分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/27271.html