为 IE 编写兼容性样式

为 IE 编写兼容性样式

由于众所周知的原因,尽管 IE 非常傻 x ,但依旧存在很大的市场,所以必须为 IE11 编写一些特殊样式,才能让项目成功运行

更多精彩

  • 更多技术博客,请移步 asing1elife’s blog

IE11 专有 hack

  1. 在此 @media 中编写的样式,只有在 IE11 才会生效
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .slide-right-pop-panel {
        top 0
    }
}

IE10 专有 hack

  1. IE7 - IE9 的专有注释在 IE10 不适用,需要使用以下方式读取
  2. @cc_on 为 IE10 脚本的功能检测名
<html>

<script>
  if (/*@cc_on!@*/false) {
    document.documentElement.className += ' ie10';
  }
script>

html>

IE7 - IE9 专有 hack

  1. 以下编写的是 IE9 样式,其他只需要修改对应数字即可
  2. 通过为 添加对应的属性标签,可以完美区分各种 IE 浏览器样式

 <html class=""> 
...
<style>
.ie9 #teacherSection {
  background-color: rgba(62, 137, 214, 1.000);
}

.ie9 #studentSection .student-item figure {
  display: none;
}
style>
html>

你可能感兴趣的:(为 IE 编写兼容性样式)