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
Release: 2016-06-24 11:58:52
Original
1065 people have browsed it

Statement to determine IE version under IE

IE7 and below are available

Only visible in IE6 version

Available in versions below IE8

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]-->
Copy after login

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template