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

Double loading issue when the page contains img src

<br />When the page contains <img src=&qu...

JavaScript to implement image preloading and lazy loading

This article shares the specific code for impleme...

Node uses async_hooks module for request tracking

The async_hooks module is an experimental API off...

js canvas realizes rounded corners picture

This article shares the specific code of js canva...

Using Vue3 (Part 1) Creating a Vue CLI Project

Table of contents 1. Official Documentation 2. Cr...

A small collection of html Meta tags

<Head>……</head> indicates the file he...

Node.js returns different data according to different request paths.

Table of contents 1. Learn to return different da...

Detailed explanation of the use of Linux lseek function

Note: If there are any errors in the article, ple...

HTML head tag detailed introduction

There are many tags and elements in the HTML head ...

Axios project with 77.9K GitHub repository: What are the things worth learning?

Table of contents Preface 1. Introduction to Axio...

Example of MySQL auto-increment ID exhaustion

Display Definition ID When the auto-increment ID ...

A MySQL migration plan and practical record of pitfalls

Table of contents background Solution 1: Back up ...