不会在IE上执行的CSS

时间:2018-12-14 12:22:20

标签: css internet-explorer internet-explorer-11

this answer中,我找到了下一个@media

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
     /* IE10+ CSS styles go here */
}

此媒体中的CSS仅在IE中执行。

能否请您提出相反的CSS?可以在除IE(我对IE 11感兴趣)之外的任何浏览器中执行

1 个答案:

答案 0 :(得分:1)

您在想这是错误的方法-您应该只应用所需的样式,然后在您的即媒体查询中重置样式

/* use this to style all browsers */
.no-ie-style {
  font-weight: bold;
  text-decoration: underline;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* use this to reset to defaults */
  .no-ie-style {
    font-weight: normal;
    text-decoration: none;
  }
}
<div class="no-ie-style">hello</div>