Home >Web Front-end >HTML Tutorial >HTML5 is compatible with all versions of IE_html/css_WEB-ITnose

HTML5 is compatible with all versions of IE_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:58:521083browse

Statement to determine IE version under IE

fba995dab578c8cafc3e3c6e0c8b592e

78d7a36ff1782496654e870deb5f1e15

ef8d428f62053f467d29023cecb49d94

IE7 and below are available

32bf6dd8d9e9c69afb95af0b0e5e6991

099b48667cc570c8d4eae54f267e1485

Only visible in IE6 version

d80bddb973d2eb66d561f330411231dd

365479cd1a593fd7259a0d26b86e81d9

Available in versions below IE8

f92958435b2b094c55bbcf32a6c93dd8

< ;![endif]-->

IE7 and above versions are visible

where:

lt: means less than

lte: means less than or equal to

gt: means greater than

gte: means greater than or equal to

Without the above words, it means equal to

Usage: Used to selectively load styles or scripts

<link rel="stylesheel" href="css.css"><!--默认添加的样式--><!--[if lte IE 8]>  <link rel="stylesheel" href="lteie8.css">  <!--当浏览器版本小于等于IE8时加载的样式--><![endif]--><!--[if IE 9]>  <script src="ie9.js"></script>  <!--当浏览器版本为IE9时加载该脚本--><![endif]-->

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn