1、支持所有IE浏览器
复制代码代码如下:
!--[if IE]
link rel="stylesheet" href="https://www.rkxy.com.cn/dnjc/all-ie-only.css" type="text/css"/
![endif]--
2、支持除IE外的所有浏览器
复制代码代码如下:
!--[if !IE]
link rel="stylesheet" href="https://www.rkxy.com.cn/dnjc/not-ie.css" type="text/css"/
![endif]--
上面是除了IE浏览器外所有浏览器都识别这个样式,另外CSS-TRICKS的《How To Create an IE-Only Stylesheet 》一文中提供了另一种写法:
复制代码代码如下:
!--[if !IE] !--
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/not-ie.css" /
!--![endif]--
3、仅仅支持IE10
复制代码代码如下:
!--[if IE 10]
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/ie10.css"
![endif]--
4、仅仅支持IE9
复制代码代码如下:
!--[if IE 9]
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/ie9.css"
![endif]--
5、仅仅支持IE8
复制代码代码如下:
!--[if IE 8]
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/ie8.css"
![endif]--
6、仅仅支持IE7
复制代码代码如下:
!--[if IE 7]
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/ie7.css"
![endif]--
7、仅仅支持IE6
复制代码代码如下:
!--[if IE 6]
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/ie6.css"
![endif]--
8、支持IE10以下版本(IE9以及IE9以下版本)
这种方法是样式表使用在低于IE10的浏览器,换句话说除了IE10以外的所有IE版本都将被支持 。
复制代码代码如下:
!--[if lt IE 10]
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/ie9-and-down.css"
![endif]--
也可以写成
复制代码代码如下:
!--[if lte IE 9]
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/ie9-and-down.css"
![endif]--
前面我们也说过了lt和lte的区别,lt表示小于版本号,不包括条件版本号本身;而lte是小于或等于版本号,包括了版本号自身 。
9、支持IE9以下版本(IE8以及IE8以下版本)
复制代码代码如下:
!--[if lt IE 9]
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/ie8-and-down.css"
![endif]--
或:
复制代码代码如下:
!--[if lte IE 8]
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/ie8-and-down.css"
![endif]--
10、支持IE8以下版本(IE7以及IE7以下版本)
复制代码代码如下:
!--[if lt IE 8]
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/ie7-and-down.css"
![endif]--
或:
复制代码代码如下:
!--[if lte IE 7]
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/ie7-and-down.css"
![endif]--
11、支持IE7以下版本(IE6以及IE6以下版本)
复制代码代码如下:
!--[if lt IE 7]
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/ie6-and-down.css"
![endif]--
或:
复制代码代码如下:
!--[if lte IE 6]
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/ie6-and-down.css"
![endif]--
上面811这几种方法,使用的是低于(lt)和低于或等于(lte)的方法来判断,我们也可以使用大于(gt)和大于或等于(gte)达到上面的效果:
12、高于IE9的版本(IE10以及IE10以上版本)
复制代码代码如下:
!--[if gt IE 9]
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/ie10-and-up.css"
![endif]--
或:
复制代码代码如下:
!--[if gte IE 10]
link rel="stylesheet" type="text/css" href="https://www.rkxy.com.cn/dnjc/ie10-and-up.css"
推荐阅读
- 怎么查看IE版本 2招教你如何查看浏览器版本
- Win7安装ie10后蓝屏重启及浏览器滚动栏右侧出现黑条解决方案
- alt组合+crrl组合 ie10浏览器下的实用快捷键有哪些
- IE11浏览器兼容性视图设置在哪里?如何设置?
- Internet Explorer 11 浏览器介绍:别叫我IE
- win8系统下IE浏览器闪退的问题解决步骤
- IE11怎么降级到IE10解决升级IE11之后的兼容性问题
- ie10 css hack 条件注释等兼容方式整理
- IE9、IE10、IE11 教你通过命令行完美完全的卸载IE浏览器
- IE与Firefox的CSS兼容大全 推荐