Conditional comments
Written byPhuoc Nguyen
Created
06 Sep, 2022
Conditional comments have the same syntax as an HTML comment (
`<!-- -->`
), but they only work on the Internet Explorer browser (IE).
Despite the fact that the technique isn't used on the web nowadays, I still keep it here to remind us of what we had to deal with many years ago.The content inside the comments are only available on IE 5-9, and are ignored by other browsers. In the older versions of IE, starting from IE 10, the syntax is disabled.
<!--[if IE]>Only IE sees this<![endif]-->
You are able to add some constraint to restricts the IE versions, for example:
<!--[if IE 8]>Only IE 8 sees this<![endif]-->
<!--[if gte IE 8]>Only IE 8 and higher versions see this<![endif]-->
<!--[if lte IE 8]>Only IE 8 and lower versions see this<![endif]-->
The special characters indicating the IE versions are listed as following:
Character | Description |
---|---|
`gt` | Greater than |
`gte` | Greater than or equal to |
`lt` | Less than |
`lte` | Less than or equal to |
You can apply styles or fixes for a given IE version such as
<link href="styles.css" rel="stylesheet" />
<!--[if IE 8]>
<link href="fix-ie8.css" rel="stylesheet" />
<![endif]-->
<!--[if IE 9]>
<link href="fix-ie9.css" rel="stylesheet" />
<![endif]-->
The
`styles.css`
file contains the styles working for modern browsers whereas `fix-ie8.css`
and `fix-ie9.css`
files provide the fixes for IE 8 and IE 9 respectively.Questions? 🙋
Do you have any questions? Not just about this specific post, but about any topic in front-end development that you'd like to learn more about? If so, feel free to send me a message on Twitter or send me an email. You can find them at the bottom of this page.
I have a long list of upcoming posts, but your questions or ideas for the next one will be my top priority. Let's learn together! Sharing knowledge is the best way to grow 🥷.
Recent posts ⚡
Make a text area fit its content automatically
30 Sep, 2023
Quickly insert alternate characters while typing
30 Sep, 2023
Zebra-like background
30 Sep, 2023
Add autocomplete to your text area
28 Sep, 2023
Linear scale of a number between two ranges
28 Sep, 2023
Highlight the current line in a text area
27 Sep, 2023
Create your own custom cursor in a text area
27 Sep, 2023
Mirror a text area for improving user experience
26 Sep, 2023
Display the line numbers in a text area
24 Sep, 2023
Select a given line in a text area
24 Sep, 2023
Highlight keywords in a text area
23 Sep, 2023
Newsletter 🔔
If you're into front-end technologies and you want to see more of the content I'm creating, then you might want to consider subscribing to my newsletter.
By subscribing, you'll be the first to know about new articles, products, and exclusive promotions.
Don't worry, I won't spam you. And if you ever change your mind, you can unsubscribe at any time.
Phước Nguyễn