Summary of HTML Hack Tags in IE Browser

Summary of HTML Hack Tags in IE Browser


Copy code
The code is as follows:

<!--[if !IE]><!--> Recognizable except IE<!--<![endif]-->
<!--[if IE]> All IE can recognize<![endif]-->
<!--[if IE 5.0]> Only IE5.0 can recognize<![endif]-->
<!--[if IE 5]> Only IE5.0 and IE5.5 can recognize<![endif]-->
<!--[if gt IE 5.0]> IE5.0 and above can recognize<![endif]-->
<!--[if lt IE 6]> IE6 and below versions can recognize<![endif]-->
<!--[if IE 6]>this is ie6<![endif]-->
<!--[if gt IE 6]> IE6 and above can recognize<![endif]-->
<!--[if lt IE 7]> IE7 and below versions can recognize<![endif]-->
<!--[if IE 7]>this is ie7<![endif]-->
<!--[if gt IE 7]> IE7 and above can recognize<![endif]-->
<!--[if lt IE 8]> IE8 and below versions can recognize<![endif]-->
<!--[if IE 8]>this is ie8<![endif]-->
<!--[if gt IE 8]> IE8 and above can recognize<![endif]-->
<!--[if lt IE 9]> IE9 and below versions can recognize<![endif]-->
<!--[if IE 9]>this is ie9<![endif]-->

<<:  MySQL Basics Quick Start Knowledge Summary (with Mind Map)

>>:  Right align multiple elements in the same row under div in css

Recommend

How to fix some content in a fixed position when scrolling HTML page

This article mainly introduces how some content i...

Web design tips on form input boxes

This article lists some tips and codes about form...

Tips for viewing History records and adding timestamps in Linux

Tips for viewing History records and adding times...

Summary of uncommon js operation operators

Table of contents 2. Comma operator 3. JavaScript...

6 solutions for network failure in Docker container

6 solutions for network failure in Docker contain...

How to use localStorage in JavaScript

If you are a developer looking to get into the wo...

Implementation example of react project from new creation to deployment

Start a new project This article mainly records t...

The DOCTYPE mode selection mechanism of well-known browsers

Document Scope This article covers mode switching...

Detailed explanation of how Nginx works

How Nginx works Nginx consists of a core and modu...

Implementation of Docker building Maven+Tomcat basic image

Preface In Java programming, most applications ar...

Solve the installation problem of mysql8.0.19 winx64 version

MySQL is an open source, small relational databas...