您的位置:首页 > Web前端 > CSS

IE10 CSS Hack(顺便聊聊IE11的CSS Hack)

2014-01-08 17:48 423 查看

一、特性检测:@cc_on

我们可以用IE私有的条件编译(conditional compilation)结合条件注释来提供针对ie10的Hack:该脚本里面的IE排除条件注释,以确保IE6-9不承认它,然后它功能检测到了名为@ cc_on

1
2
3
4
5

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

请注意/*@cc_on ! @*/中间的这个感叹号。

这样就可以在ie10中给html元素添加一个class=”ie10″,然后针对ie10的样式可以卸载这个这个选择器下:

1
2
3

.ie10 .example {
/* IE10-only styles go here */
}

这是ie10标准模式下的截图:





这是ie10,IE8模式下的截图:





考录到兼容以后的IE版本,比如IE11,js代码可以改一下:

1
2
3

if(/*@cc_on!@*/false){
document.documentElement.className+=' ie'+document.documentMode;
}

关于document.documentMode可以查看IE的documentMode属性(IE8+新增)。

可能是想多了,实事上经测试预览版的IE11已经不支持@ cc_on语句,不知道正式版会不会支持。不过这样区分IE11倒是一件好事。这样修改代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<!--[if !IE]><!-->
<script>
// 针对IE10
if(/*@cc_on!@*/false){
document.documentElement.className+=' ie'+document.documentMode;
}
// 针对IE11及非IE浏览器,
// 因为IE11下document.documentMode为11,所以html标签上会加ie11样式类;
// 而非IE浏览器的document.documentMode为undefined,所以html标签上会加ieundefined样式类。
if(/*@cc_on!@*/true){
document.documentElement.className+=' ie'+document.documentMode;
}
</script>
<!--<![endif]-->
<style type="text/css">
.ie10 .testclass {
color:red
}
.ie11 .testclass {
color:blue
}
.ieundefined .testclass {
color:green
}
</style>
</head>

<body>
<div class="testclass">
test text!
</div>
</body>
</html>

其中:

1
2
3

if(/*@cc_on!@*/true){
document.documentElement.className+=' ie'+document.documentMode;
}

以上代码是针对IE11及非IE浏览器,因为:

IE11下document.documentMode为11,所以html标签上会加ie11样式类;

而非IE浏览器的document.documentMode为undefined,所以html标签上会加ieundefined样式类。

这样把IE11也区分出来了,IE11预览版下的截图:





呵呵,纯属YY,IE11正式版还不知道什么样子,而且在实际的项目中随着IE的逐渐标准化,IE11和IE10可能很少用不到css hack。

二、@media -ms-high-contrast 方法

IE10支持媒体查询,然后也支持-ms-high-contrast这个属性,所以,我们可以用它来Hack IE10:

1
2
3

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

这种写法可以适配到高对比度和默认模式。所以可以覆盖到所有ie10的模式了。这种方式在预览版的IE11中也生效。

当然,方法二也可以和方法一一起用:

1
2
3

if(window.matchMedia("screen and (-ms-high-contrast: active), (-ms-high-contrast: none)").matches){
document.documentElement.className+="ie10";
}

三、@media 0 方法

这个方法不是太完美,因为IE9和预览版的IE11也支持media和\0的hack。

1
2
3

@media screen and (min-width:0\0) {
/* IE9 , IE10 ,IE11 rule sets go here */
}

总之,随着IE的逐渐标准化,IE11和IE10可能很少用不到css hack,不看也罢,呵呵。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: