忽略IE的评论标记不起作用

时间:2017-02-06 06:59:56

标签: internet-explorer hide

screenshot

屏幕截图显示应该隐藏IE代码的评论标记向所有人显示。另一个必须隐藏除IE以外的其他代码的人不会向任何人展示它。

这个答案<!--[if !IE]> not working没有帮助

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

这是一个可能适合您的示例示例

  

直到IE9

<!--[if IE ]>
    <style> .someclass{
        text-align: center;
        background: #00ADEF;
        color: #fff;
        visibility:hidden;  // in case of hiding
           }
    #someotherclass{
        display: block !important;
        visibility:visible; // in case of visible

    }
    </style>
<![endif]-->
  

这是针对IE9之后的

  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
enter your CSS here
}