我如何才能破解或只写css IE 11?我有一个网站在IE 11中看起来很糟糕。我只是到处找,但还没有找到解决办法。

有css选择器吗?


当前回答

你可以使用js并在html中添加一个类来保持条件注释的标准:

  var ua = navigator.userAgent,
      doc = document.documentElement;

  if ((ua.match(/MSIE 10.0/i))) {
    doc.className = doc.className + " ie10";

  } else if((ua.match(/rv:11.0/i))){
    doc.className = doc.className + " ie11";
  }

或者使用像bowser这样的库:

https://github.com/ded/bowser

或者modernizr用于特征检测:

http://modernizr.com/

其他回答

我发现这很有帮助

<?php if (strpos($_SERVER['HTTP_USER_AGENT'], 'Trident/7.0; rv:11.0') !== false) { ?>
    <script>
    $(function(){
        $('html').addClass('ie11');
    });
    </script>
<?php } ?>

将此添加到<head>文档下

根据不断发展的话题,我更新了以下内容:

ie11(及以上..)

_:-ms-fullscreen, :root .foo { property:value; }

ie10及以上

_:-ms-lang(x), .foo { property:value; }

or

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
   .foo{property:value;}
}

仅支持IE 10

_:-ms-lang(x), .foo { property:value\9; }

ie9及以上

@media screen and (min-width:0\0) and (min-resolution: +72dpi) {
  //.foo CSS
  .foo{property:value;}
}

ie9和ie10

@media screen and (min-width:0\0) {
    .foo /* backslash-9 removes.foo & old Safari 4 */
}

只支持ie9

@media screen and (min-width:0\0) and (min-resolution: .001dpcm) { 
 //.foo CSS
 .foo{property:value;}
}

IE 8,9和10

@media screen\0 {
    .foo {property:value;}
}

仅限IE 8标准模式

.foo { property /*\**/: value\9 }

IE 8

html>/**/body .foo {property:value;}

or

@media \0screen {
    .foo {property:value;}
}

IE 7

*+html .foo {property:value;}

or

*:first-child+html .foo {property:value;}

IE 6, 7和8

@media \0screen\,screen\9 {
    .foo {property:value;}
}

ie6及ie7

@media screen\9 {
    .foo {property:value;}
}

or

.foo { *property:value;}

or

.foo { #property:value;}

IE 6, 7和8

@media \0screen\,screen\9 {
    .foo {property:value;}
}

IE 6

* html .foo {property:value;}

or

.foo { _property:value;}

Javascript的替代品

Modernizr

Modernizr在页面加载时快速运行,以检测功能;然后,它 创建带有结果的JavaScript对象,并向 html元素

用户代理选择

Javascript:

var b = document.documentElement;
        b.setAttribute('data-useragent',  navigator.userAgent);
        b.setAttribute('data-platform', navigator.platform );
        b.className += ((!!('ontouchstart' in window) || !!('onmsgesturechange' in window))?' touch':'');

添加(例如)下面的html元素:

data-useragent='Mozilla/5.0 (compatible; M.foo 9.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)'
data-platform='Win32'

允许非常有针对性的CSS选择器,例如:

html[data-useragent*='Chrome/13.0'] .nav{
    background:url(img/radial_grad.png) center bottom no-repeat;
}

脚注

如果可能的话,在不使用黑客的情况下识别并修复任何问题。支持渐进增强和优雅降级。然而,这是一个“理想世界”的场景,并不总是可以实现,因此-以上应该有助于提供一些好的选择。


归因/基本阅读

Jeff Clayton | Browserhacks.com 基思•克拉克 保罗爱尔兰 Web虔诚的 的扳手

从2013年秋天开始,我就一直在写这些,并把它们贡献给BrowserHacks.com——我写的这个非常简单,而且只有IE 11支持。

<style type="text/css">
_:-ms-fullscreen, :root .msie11 { color: blue; }
</style>

当然还有div…

<div class="msie11">
    This is an Internet Explorer 11 CSS Hack
<div>

所以文本在ie11中显示为蓝色。祝你玩得开心。

-

更多IE和其他浏览器的CSS技巧在我的现场测试站点这里:

更新:http://browserstrangeness.bitbucket.io/css_hacks.html

镜子:http://browserstrangeness.github.io/css_hacks.html

(如果你也在寻找MS Edge CSS Hacks,那就是去的地方。)

这里有一个两步解决方案 下面是IE10和ie11的破解方法

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

因为IE10和IE11支持-ms-高对比度,你可以利用这个优势来瞄准这两个浏览器

如果你想排除IE10,你必须创建一个IE10特定的代码,如下所示,它使用用户代理技巧,你必须添加这个Javascript

var doc = document.documentElement;
doc.setAttribute('data-useragent', navigator.userAgent);

这个HTML标签

<html data-useragent="Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)">

现在你就可以像这样写CSS代码了

html[data-useragent*='MSIE 10.0'] h1 {
  color: blue;
}

更多信息请参考本网站,威尔教程,克里斯教程


如果你想针对IE11及以后版本,以下是我的发现:

_:-ms-fullscreen, :root .selector {}

这里有一个获取更多信息的很好的资源:browserhacks.com

你可以使用js并在html中添加一个类来保持条件注释的标准:

  var ua = navigator.userAgent,
      doc = document.documentElement;

  if ((ua.match(/MSIE 10.0/i))) {
    doc.className = doc.className + " ie10";

  } else if((ua.match(/rv:11.0/i))){
    doc.className = doc.className + " ie11";
  }

或者使用像bowser这样的库:

https://github.com/ded/bowser

或者modernizr用于特征检测:

http://modernizr.com/