IE Browser Detection for CSS (Using Conditional Comments)

12 March 2009 - 1:00 AM / by Dominic Pettifer. 3 Comments

Technical Article - A simple, reliable way to perform browser detection for Internet Explorer browsers, in order to serve certain CSS or JavaScript files (or even HTML mark-up) to specific versions of IE, while ignoring other browsers. If you have to serve a certain style sheet file to a specific version of IE to steer your way around CSS browser rendering bugs, then this may come in handy.

Browser Detection for CSS

If you want to use a specific external StyleSheet file for IE6 users to work around CSS display/rendering bugs in IE6, then you need to perform some form of browser detection, detect that the user is using Internet Explorer 6 then use that particular IE6 only stylesheet, while not serving it to other more standards compliant browsers such as Safari or Firefox. In server-side code you could read the user-agent header in code, check for IE6 then programmatically render an external style sheet link on the page. Or you could use JavaScript to detect the IE version, and then output the correct stylesheet.

But there is a much simpler and better way. In your HTML page <head> section, add the following mark-up:

<!--[if lte IE 6]>
    <link type="text/css" rel="stylesheet" href="/css/ie6.css" />
<![endif]-->

This is called a Conditional Comment. It's saying if the browser is Internet Explorer version 6 or earlier, then use the /css/ie6.css external stylesheet (in addition to other stylesheets you may have declared in the <head>). These are evaluated client-side, and require no server processing, so will work for PHP, JavaServlets, Ruby, plain static HTML files etc. It will only be picked up and read by IE browsers, other browsers (Firefox, Safari, Chrome etc.) will treat it as an ordinary HTML <!-- comment --> and ignore it.

Similarly if you want to target IE version 7 only, you could use:

<!--[if IE 7]>
    <link type="text/css" rel="stylesheet" href="/css/ie7.css" />
<![endif]-->

Or to target only version 7 and above:

<!--[if gte IE 7]>
    <link type="text/css" rel="stylesheet" href="/css/ie7+.css" />
<![endif]-->

Or you can target all non-IE browsers with:

<![if !IE]>
    <link type="text/css" rel="stylesheet" href="/css/StandardsCompliant.css" />
<![endif]>

Or all IE browsers with:

<!--[if IE]>
    <link type="text/css" rel="stylesheet" href="/css/ie.css" />
<![endif]-->

However, I would strongly advice against the last one, as it will blanket target all versions of IE, including potential future versions, and you can't predict how future versions will behave.

There is even speculation that many of the website compatibility issues plaguing the new IE8 are the result of faulty browser detection, with websites serving a special version of the site to IE to work around rendering bugs. However, this borked version is also being served to IE8 which doesn't have these rendering bugs, causing the site to break, and using <!--[if IE]> could be one of the main causes of this.

Other Uses

These Conditional Comments have other uses, as they can be used to conditionally serve any form of HTML. So you can use them to add JavaScript files, HTML content, even direct CSS and Javascript code in the page:

<!--[if lte IE 6]>
    <p class="massiveLetters">You are using Internet Explorer 6, for the love of God please upgrade!!</p>

    <script type="text/javascript">
        alert('Stop Using IE6 now!!');
    </script>
<![endif]-->

I find Conditional Comments a great alternative to normal IE hacks such as the star-HTML hack. They allow you to keep your main CSS file clean of these hacks, and fully Standards Compliant, while you stick all your crappy IE specific rubbish into its own file. Also the file won't be downloaded for other browsers, saving you some bandwidth. Technically is it a form of CSS Hack, but one that doesn't rely on one browser bug to fix another browser bug.

I'll often use the following setup in my websites:

<head>
    ......other heady stuff.....

    <link type="text/css" rel="stylesheet" href="/css/standard.css" />

    <!--[if lte IE 6]>
        <link type="text/css" rel="stylesheet" href="/css/ie6.css" />
    <![endif]-->

    <!--[if IE 7]>
        <link type="text/css" rel="stylesheet" href="/css/ie7.css" />
    <![endif]-->

</head>

So IE6 will pull down standard.css and ie6.css. ie6.css appears later so with any conflicting styles, ie6.css will take priority, so you can use ie6.css to override any style rules that are causing rendering issues in IE6. Similarly, IE7 will pull down standard.css and ie7.css. All other browsers will pull down standard.css only.

Other Browsers?

Conditional Comments only work for Internet Explorer. You can't use them to detect Opera for instance. You could overcome this with server-side detection, but this is prone to errors, and newer browsers may alter the user agent header, so be careful. However, almost all other non-IE browsers already render in a standards compliant manner, so this has never been an issue for me.

3 Comments on "Using Conditional Comments"

Post a Comment
  • RE: Using Conditional Comments

    Try implementing this tool I made: http://code.google.com/p/css-browser-identifier/

    Posted on 30 July 2010 - 9:39 PM / by Gaby Dilley

    • vintage louis vuitton wallet

      <a href="http://www.usbags.net/Categories_louis-vuitton-monogram-handbags_6.html">Louis Vuitton handbags</a> Louis Vuitton’s iconic and divinely supple Monogram canvas is enhanced by rich golden metallic comes with medium and big size. As people are overwhelmed by Bohemia style, maybe you can choose the big size to match your Bohemia longuette.

      Posted on 26 July 2011 - 8:22 AM / by louis vuitton

    • Jordan space jams

      It cannot be denied that these <a href="http://www.jordan-space-jams.com/">shoes new Jordan</a> are attractive and unique. This style can also offer warmth to your feet and prevent slipping. <a href="http://www.jordan-space-jams.com/air-jordan-11-xi-retro-concords-white-black-dark-concord-4702.html">air jordan 11 retro cool greys</a>, Cute and energetic, this is that style gives us at the first sight. Besides, <a href="http://www.jordan-space-jams.com/air-jordan-11-xi-retro-concords-white-black-dark-concord-4702.html">Jordan space jam 2009</a> wear cozy in all seasons. <a href="http://www.jordan-space-jams.com/">buy air jordan 11 cool grey</a>,You will certainly like this. <a href="http://www.jordan-space-jams.com/">Choose this style</a> and you will also gain the happiness from your friends.<a href="http://www.jordan-space-jams.com/air-jordan-11-xi-retro-concords-white-black-dark-concord-4702.html"> Jordan shoes for cheap</a> is with no doubt a good choice with this design. Do not hesitate!!

      Posted on 7 January 2012 - 3:32 AM / by Jordan space jams

  • Target all non-IE browsers

    The problem with your "target all non-IE browsers" solution, is that it will not validate at W3C.

    In stead use:
    <!--[if !IE]-->
    <link type="text/css" rel="stylesheet" href="/css/StandardsCompliant.css" />
    <!--[endif]-->

    Posted on 12 May 2010 - 1:03 PM / by RDC

    • RE: Target all non-IE browsers

      [url=http://www.nikeam.com]Air shoes[/url]
      [url=http://www.nikeam.com]Nike Air shoes[/url]
      <a href="http://www.nikeam.com">Air shoes</a>
      <a href="http://www.nikeam.com">Nike Air shoes</a>

      Posted on 30 May 2011 - 8:14 AM / by Air shoes

      • http://www.nikefree-runtilbud.net/

        three female workers <strong><a href="http://www.nikefree-runtilbud.net/nike-free-50-dame-c-4/" title="Nike Free Udsalg">Nike Free Udsalg</a></strong> is a factory yard, <strong><a href="http://www.nikefree-runtilbud.net/nike-free-70-dame-c-5/" title="Nike Free Run sko">Nike Free Run sko</a></strong> this <strong><a href="http://www.nikefree-runtilbud.net/" title="NIKE FREE RUN">NIKE FREE RUN</a></strong> year has laid off <strong><a href="http://www.nikefree-runtilbud.net/nike-free-70-m%C3%A6nd-c-7/" title="nike free 7.0">nike free 7.0</a></strong> danger, <strong><a href="http://www.nikefree-runtilbud.net/nike-free-50-m%C3%A6nd-c-2/" title="Nike Free 5.0">Nike Free 5.0</a></strong> so <strong><a href="http://www.nikefree-runtilbud.net/nike-free-30-m%C3%A6nd-c-1/" title="Nike Free Sko">Nike Free Sko</a></strong> they are particularly <strong><a href="http://www.nikefree-runtilbud.net/nike-free-run-dame-c-10/" title="Nike Free Danmark">Nike Free Danmark</a></strong> envious looks and goo...

        Posted on 16 November 2011 - 6:09 AM / by NIKE FREE RUNNING

    • Jordans On Sale

      very good, multi-compatible multi-channel product category. Therefore, based on problem analysis and Li Ning, Li <a href="http://www.nikejordansneaker.net/air-jordan-spizike-C62.html" title="Jordan Spizike Sale">Jordan Spizike Sale</a> Ning <a href="http://www.nikejordansneaker.net/" title="air jordan for sale">air jordan for sale</a> Company is pleased to provide views of this consent, this time is the end of 2002. Specialization, the release of Who is the best test market, Li Ning Company turnover in 2002 reached about 958 million yuan in 2003, 1.276 billion yuan, 1.878 billion yuan in 2004, surged 47.2% over the previous year, net profit rose 42.0% in <a href="http://www.nikejordansneaker.net/air-jordan-6-rings-C63.html" title="cheap jordan 6 rings">cheap jordan 6 rings</a> 200...

      Posted on 2 June 2011 - 3:27 AM / by Jordans On Sale

    • RE: Target all non-IE browsers

      s <b><a href="http://www.ugg--uk.co.uk/">kids uggs</a></b> and <b><a href="http://www.ugg-boots-for-sale.co.uk">discount uggs</a></b> sisters traveled more than <b><a href="http://www.ugg--australia.co.uk/">ugg boots outlet</a></b> <b><a href="http://www.ugg--boots.co.uk/">ugg on sale uk</a></b> 10 <b><a href="http://www.ugg-boot-on-sale.co.uk">uggs boots sales</a></b> <b><a href="http://www.ugg--uk.co.uk/">uggs boots for cheap</a></b> cities and <b><a href="http://www.ugg-australia-uk.org.uk">ugg boot outlet</a></b> counties <b><a href="http://www.ugg-australia-uk.org.uk">ugg australia uk</a></b> around Dengfeng, no <b><a href="http://www.ugg-australia-uk.org.uk">buy uggs</a></b> matter <b><a href="http://www.ugg--boots.co.uk/">ugg boots sale</a></b> where <b><a href="http://www.ugg-boots-for-sale.co.uk">ugg bailey button</a></b> <b><a href="http://www.ugg--australia.co.uk/">ugg australia</a></b> there <b><a href="http://www.ugg-boots-for-sale.co.uk">uggs outlet</a></b> <b><a href="http://www.ugg-boot-on-sale.co.uk">ugg boot on sale</a></b> <b><a href="http://www.ugg-boot-on-sale.co.uk">uggs women</a></b> is...

      Posted on 15 October 2011 - 3:34 AM / by ugg classic

    • Jordan space jams

      Well the highly anticipated <a href="http://www.jordan-space-jams.com/blog/2-news.html">Jordan space jam</a> came earlier than expected from <a href="http://www.jordan-space-jams.com/">Jordan retro 11 space jam</a>! Already folks are lining up to grab a pair of the <a href="http://www.jordan-space-jams.com/">space jam Jordans</a>, officially being released December 23rd. Initially the <a href="http://www.jordan-space-jams.com/">space jams Jordans</a> were not going to be released till Christmas Eve. Madness is on the way for sure! Get to <a href="http://www.jordan-space-jams.com/">our stores</a> and enjoy your shopping. Grab your <a href="http://www.jordan-space-jams.com/air-jordan-11-xi-retro-space-jam-black-varsity-royal-white-4701.html">Jordan 11 space jam for sale</a> early!

      Posted on 7 January 2012 - 3:31 AM / by Jordan space jams

    • canada goose jackets

      <b><a href="http://www.11jordan.net/air-jordan-retro-1-C32.html">Jordan 1 retros</a></b> ordered <b><a href="http://www.11jordan.net/jordan-rare-air-C76.html">Michael Jordan Rare Air</a></b> <b><a href="http://www.11jordan.net/jordan-rare-air-C76.html">Jordan Rare Air</a></b> the school closed one week </p> <p> parents <b><a href="http://www.11jordan.net/air-jordan-2011-C77.html">cheap jordan 2011</a></b> also reported <b><a href="http://www.11jordan.net/">jordan release dates 2011</a></b> that <b><a href="http://www.11jordan.net/">air jordan 2011</a></b> G...

      Posted on 29 January 2012 - 6:26 AM / by canada goose jackets

  • RE: Using Conditional Comments

    Thanks you but this method is older. Very nice working.

    Posted on 20 December 2009 - 4:35 PM / by Atasözleri

    • christian louboutin replica

      Newest styles of <a href="http://www.christianlouboutinreplicacl.com/"><strong>christian louboutin high heels</strong></a> in hot sale now, <a href="http://www.christianlouboutinreplicacl.com/"><strong>Christian Louboutin Knockoffs</strong></a> shoes sale now, buy <a href="http://www.christianlouboutinreplicacl.com/"><strong>christian louboutin replica</strong></a> in our online uk store .your shoes sales prices will save.

      Posted on 22 September 2011 - 2:39 AM / by christian louboutin replica

      • gucci outlet

        <b><a href="http://www.gucciitaly.net/">cheap gucci</a></b> engdu to college, because close to home, <b><a href="http://www.gucciitaly.net/">gucci outlet</a></b> convenient <b><a href="http://www.gucciitaly.net/">cheap gucci</a></b> <b><a href="http://www.gucciitaly.net/">gucci outlet</a></b> home to help Dad, <b><a href="http://www.gucciitaly.net/">gucci for sale</a></b> take good care <b><a href="http://www.gucciitaly.net/">discount gucci</a></b> of her mothe.

        Posted on 15 November 2011 - 9:09 AM / by gucci outlet

    • RE: RE: Using Conditional Comments

      wedding dresses http://www.raylibridal.com/
      luxurious evening dresses http://www.raylibridal.com/affordable-evening-dresses-c131_159.html
      Fall 2011 Wedding Dresses http://www.raylibridal.com/affordable-fall-2011-wedding-dresses-c129_134.html
      Wedding Dresses 2011 http://www.raylibridal.com/affordable-wedding-dresses-2011-c129_135.html
      wedding gowns http://www.dinobridal.com
      [url=http://www.raylibridal.com/affordable-wedding-dresses-c129.html]wedding dress[/url]

      Posted on 20 December 2011 - 2:35 AM / by Wedding Dresses

    • Jordan space jams

      It cannot be denied that these <a href="http://www.jordan-space-jams.com/">shoes new Jordan</a> are attractive and unique. This style can also offer warmth to your feet and prevent slipping. <a href="http://www.jordan-space-jams.com/air-jordan-11-xi-retro-concords-white-black-dark-concord-4702.html">air jordan 11 retro cool greys</a>, Cute and energetic, this is that style gives us at the first sight. Besides, <a href="http://www.jordan-space-jams.com/air-jordan-11-xi-retro-concords-white-black-dark-concord-4702.html">Jordan space jam 2009</a> wear cozy in all seasons. <a href="http://www.jordan-space-jams.com/">buy air jordan 11 cool grey</a>,You will certainly like this. <a href="http://www.jordan-space-jams.com/">Choose this style</a> and you will also gain the happiness from your friends.<a href="http://www.jordan-space-jams.com/air-jordan-11-xi-retro-concords-white-black-dark-concord-4702.html"> Jordan shoes for cheap</a> is with no doubt a good choice with this design. Do not hesitate!!

      Posted on 6 January 2012 - 9:24 AM / by Jordan space jams

    • Jordan space jams

      It cannot be denied that these <a href="http://www.jordan-space-jams.com/">shoes new Jordan</a> are attractive and unique. This style can also offer warmth to your feet and prevent slipping. <a href="http://www.jordan-space-jams.com/air-jordan-11-xi-retro-concords-white-black-dark-concord-4702.html">air jordan 11 retro cool greys</a>, Cute and energetic, this is that style gives us at the first sight. Besides, <a href="http://www.jordan-space-jams.com/air-jordan-11-xi-retro-concords-white-black-dark-concord-4702.html">Jordan space jam 2009</a> wear cozy in all seasons. <a href="http://www.jordan-space-jams.com/">buy air jordan 11 cool grey</a>,You will certainly like this. <a href="http://www.jordan-space-jams.com/">Choose this style</a> and you will also gain the happiness from your friends.<a href="http://www.jordan-space-jams.com/air-jordan-11-xi-retro-concords-white-black-dark-concord-4702.html"> Jordan shoes for cheap</a> is with no doubt a good choice with this design. Do not hesitate!!

      Posted on 7 January 2012 - 1:35 AM / by Jordan space jams

    • RE: RE: Using Conditional Comments

      I reached the Northwest summit <a href="http://www.northfacesaleoutlets.com">The North Face Outlet</a> of Waddington (the shorter of the two) with Wade and one other student in full white-out conditions as <a href="http://www.northfacesaleoutlets.com/the-north-face-bionic-c-40.html">The North Face Bionic</a> a horrific storm approached. We barely made it back to our high camp below the summit tower before the clouds unleashed. During the next <a href="http://www.northfacesaleoutlets.com/the-north-face-denali-c-41.html">The North Face Denali</a> three and a half days, the six of us barely ever left the confines of our tents except to participate in desperate shoveling. It snowed 8 feet in 30 hours. The snow was heavy and warm, and it was driven by 100 mph <a href="http://www.northfacesaleoutlets.com/the-north-face-gore-tex-c-47.html">The North Face Gore Tex</a> winds. One of our three tents were destroyed, two of our three shovels cracked, and our stoves could never be lit.

      Posted on 14 January 2012 - 8:29 AM / by north face outlet

Leave a Comment

Comment Details
*
* BBCode: [b]bold[/b], [i]italics[/i], [code]code[/code], [li]bullet point[/li], [h]Heading[/h], [url="http://www.example.com"]link[/url], [quote author="John Smith"]quote[/quote]

Random Image

Insanely Cute Hamster

Insanely Cute Hamster (from the blog And So It Begins (part 2) )

Quick Poll

What is your DIP/IOC Container of choice?

Poll Vote
(see results)
View Comments (625) (See previous polls)

Latest Tweets

  • And YouTube still auto-fucking-plays videos!! This is TWO-THOUSAND-AND-FUCKING-TWELVE FFS!!!

    about 20 hours ago from web
  • On a side-note, YouTube's commenting system is god-awful atrocious dreadful horrible horrible horrible!! Constant meaningless error messages

    about 20 hours ago from web
  • JavaScript is slow mmmkay http://t.co/NbB4eQjw - Actually, no, it's not http://t.co/kpGEIoPO #nodejs

    about 20 hours ago from web
  • TFS: It's super expensive, so it must be brilliant, right? Like Sharepoint #tekpubtfstitlesuggestion

    5:22 PM February 3rd from web

View Dominic Pettifer's Twitter page.