IE conditional comments for XHTML

IE conditional comments for XHTML
<br />Conditional comments are a feature unique to IE that can perform separate XHTML code processing on IE series products. Note that it is mainly for XHTML, not CSS.
Conditional comments are very powerful and can be used to make true and false judgments, for example:
Program Code
<!--[if IE]>This content is only visible to IE<![endif]-->
<!--[if IE 6.0]>This content is only visible to IE6.0<![endif]-->
Conditional comments can be used by IE to determine the version of the browser and display the content if the conditions are met. IE5.0 to 7.0 all support the comment function, and the version number is accurate to 4 decimal places:
Program Code
<!--[if IE 6.1000]>This content is only visible in IE6.1<![endif]-->
IE conditional comments also support the exclamation mark non-operation:
Program Code
<!--[if !IE 6.0]>This content is visible except for IE6.0 version<![endif]-->
And it supports prefixes to determine higher or lower versions:
Program Code
<!--[if gt IE 5.0]>This content is only visible in IE5.0 and above<![endif]-->
The gt here stands for greater than, which means versions above the current condition version, but not including the current version.
There are several other prefixes:
lt means less than the version below the current condition version, excluding the current version.
gte means greeter than or equal to the current version and including the current version.
lte means less than or equal to the current version and includes the current version.

<<:  How to modify the contents of an existing Docker container

>>:  Detailed explanation of MySQL sql_mode query and setting

Recommend

WeChat Mini Program Basic Tutorial: Use of Echart

Preface Let’s take a look at the final effect fir...

Detailed explanation of uniapp's global variable implementation

Preface This article summarizes some implementati...

How to configure domestic sources in CentOS8 yum/dnf

CentOS 8 changed the software package installatio...

Introduction to useRef and useState in JavaScript

Table of contents 1. useState hook 2. useRef hook...

How to ensure the overall user experience

Related Articles: Website Design for User Experien...

Summary of CSS front-end knowledge points (must read)

1. The concept of css: (Cascading Style Sheet) Ad...

JavaScript canvas realizes colorful sun halo effect

This article example shares the specific code of ...

Step by step guide to build a calendar component with React

Table of contents Business Background Using Techn...

MySQL5.7.27-winx64 version win10 download and installation tutorial diagram

MySQL 5.7 installation We are learning MySQL data...

Ubuntu boot auto-start service settings

How to create a service and auto-start it in Ubun...

How to set Tomcat as an automatically started service? The quickest way

Set Tomcat to automatically start the service: I ...

CSS3 sample code to achieve element arc motion

How to use CSS to control the arc movement of ele...

js to implement a simple bullet screen system

This article shares the specific code of native j...

MySQL json format data query operation

The default table name is base_data and the json ...

Docker installation and deployment example on Linux

After reading the following article, you can depl...