IE10 CSS Hack介绍及IE11的CSS Hack提前了解
建站知识 2021-07-03 08:43www.168986.cn长沙网站建设
有IE就有hack,看看,;上次同事说一个页面IE10下有问题,IE9下测试了一下,也有同样的问题。悲剧了赶紧找IE10的hack。
google上翻到的IE10 CSS Hacks 还算比较实用的。记录一下以备后用。
一、特性检测@_on
我们可以用IE私有的条件编译(conditional pilation)结合条件注释来提供针对ie10的Hack该脚本里面的IE排除条件注释,以确保IE6-9不承认它,然后它功能检测到了名为@ _on。
<!--[if !IE]><!--><script>
if (/@_on!@/false) {
document.documentElement.className+=' ie10';
}
</script><!--<![endif]-->
请注意/@_on ! @/中间的这个感叹号。
这样就可以在ie10中给html元素添加一个class=”ie10″,然后针对ie10的样式可以卸载这个这个选择器下
.ie10 .example {
/ IE10-only styles go here /
}
这是ie10标准模式下的截图
这是ie10,IE8模式下的截图
考录到兼容以后的IE版本,比如IE11,js代码可以改一下
if (/@_on!@/false) {
document.documentElement.className+=' ie' + document.documentMode;
}
关于document.documentMode可以查看IE的documentMode属性(IE8+新增)。
可能是想多了,实事上经测试预览版的IE11已经不支持@ _on语句,不知道正式版会不会支持。不过这样区分IE11倒是一件好事。这样修改代码
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<!--[if !IE]><!-->
<script>
// 针对IE10
if (/@_on!@/false) {
document.documentElement.className += ' ie' + document.documentMode;
}
// 针对IE11及非IE浏览器,
// 因为IE11下document.documentMode为11,所以html标签上会加ie11样式类;
// 而非IE浏览器的document.documentMode为undefined,所以html标签上会加ieundefined样式类。
if (/@_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>
其中
if (/@_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
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
/ IE10-specific styles go here /
}
这种写法可以适配到高对比度和默认模式。所以可以覆盖到所有ie10的模式了。这种方式在预览版的IE11中也生效。
,方法二也可以和方法一一起用
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。
@media screen and (min-width:0\0) {
/ IE9 , IE10 ,IE11 rule sets go here /
}
,随着IE的逐渐标准化,IE11和IE10可能很少用不到css hack,不看也罢,呵呵。
google上翻到的IE10 CSS Hacks 还算比较实用的。记录一下以备后用。
一、特性检测@_on
我们可以用IE私有的条件编译(conditional pilation)结合条件注释来提供针对ie10的Hack该脚本里面的IE排除条件注释,以确保IE6-9不承认它,然后它功能检测到了名为@ _on。
复制代码
代码如下:<!--[if !IE]><!--><script>
if (/@_on!@/false) {
document.documentElement.className+=' ie10';
}
</script><!--<![endif]-->
请注意/@_on ! @/中间的这个感叹号。
这样就可以在ie10中给html元素添加一个class=”ie10″,然后针对ie10的样式可以卸载这个这个选择器下
复制代码
代码如下:.ie10 .example {
/ IE10-only styles go here /
}
这是ie10标准模式下的截图
这是ie10,IE8模式下的截图
考录到兼容以后的IE版本,比如IE11,js代码可以改一下
复制代码
代码如下:if (/@_on!@/false) {
document.documentElement.className+=' ie' + document.documentMode;
}
关于document.documentMode可以查看IE的documentMode属性(IE8+新增)。
可能是想多了,实事上经测试预览版的IE11已经不支持@ _on语句,不知道正式版会不会支持。不过这样区分IE11倒是一件好事。这样修改代码
复制代码
代码如下:<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<!--[if !IE]><!-->
<script>
// 针对IE10
if (/@_on!@/false) {
document.documentElement.className += ' ie' + document.documentMode;
}
// 针对IE11及非IE浏览器,
// 因为IE11下document.documentMode为11,所以html标签上会加ie11样式类;
// 而非IE浏览器的document.documentMode为undefined,所以html标签上会加ieundefined样式类。
if (/@_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>
其中
复制代码
代码如下:if (/@_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
复制代码
代码如下:@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
/ IE10-specific styles go here /
}
这种写法可以适配到高对比度和默认模式。所以可以覆盖到所有ie10的模式了。这种方式在预览版的IE11中也生效。
,方法二也可以和方法一一起用
复制代码
代码如下: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。
复制代码
代码如下:@media screen and (min-width:0\0) {
/ IE9 , IE10 ,IE11 rule sets go here /
}
,随着IE的逐渐标准化,IE11和IE10可能很少用不到css hack,不看也罢,呵呵。
上一篇:CSS去除列表默认边距的简单方法
下一篇:CSS两种水平垂直居中示例介绍
长沙网站设计
- 如何自己建一个网站 自己想建个网站,怎么建
- 如何制作网站免费建站 创建网站免费注册
- html简单网页代码 html简单网页代码超链接
- dreamweaver网页制作 dreamweaver网页制作模板
- 上海网站建设 上海网站建设制作微信
- 如何制作网站和网页 如何制作一个网页
- html网页制作代码大全 端午节html网页制作代码大
- app开发公司 app开发公司前十名
- html网页制作 html网页制作文字居中
- app制作一个需要多少钱 请人制作一个app多少钱
- 成都网站制作 成都网站制作维护
- 百度建一个网站多少钱 百度做个公司网站要多少
- html+css网页制作成品 web网页制作成品css+javascrip
- html网页制作案例 html网页设计案例
- html+css网页制作成品 web网页制作成品css+javascrip
- 个人网站模板 个人网站模板HTML