Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know that you can use an IE conditional comment inside HTML:

<!--[if IE]>
  <link href="ieOnlyStylesheet.css" />
<![endif]-->

But what if I want to target only IE in a stylesheet, setting up a css rule for a specific element inside the html. For example, you can use this Chrome/Safari hack inside the css file as css code...

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .myClass{
        background: #fff;
        background:rgba(255,0,255,0.7);
    }
}

But using the IE hack inside the CSS stylesheet like this:

 <!--[if IE]>
      .myClass{
        background: #fff;
        background:rgba(255,0,255,0.7);
    }
 <![endif]-->

does not work. What do I use inside a stylesheet to target IE only?

share|improve this question
Conditional comments are 1) not a hack 2) not applicable to CSS, only to HTML. – BoltClock Jul 28 '12 at 18:44
thanks BoltClock, so I see – Dexter Schneider Jul 28 '12 at 19:09

4 Answers

up vote 3 down vote accepted

Conditional comments do not work within stylesheets. Instead, you can use conditional comments in your HTML to apply different CSS classes or IDs to elements that you can then target with CSS.

For instance:

<!--[if IE]>
  <div id="wrapper" class="ie">
<![endif]-->
<!--[if !IE]>
  <div id="wrapper">
<![endif]-->

There are tools, such as Modernizr, that are great for automating this.

share|improve this answer
Thank you, your code makes sense and it can be used to do what I would like to achieve... – Dexter Schneider Jul 28 '12 at 19:11

You can't use IE conditional comments but you can use hacks. This page of CSS hacks explains IE hacks you can use (and more).

share|improve this answer
Thank you, this kinda answers my question (btw, I saw this article before, I normally do some research before I post on Stack), but it only has a in-CSS solution for IE 7 and below namely: IE 6 and below * html {} IE 7 and below *:first-child+html {} * html {} IE 7 only *:first-child+html {} I would like a way to target all IE browsers with an in-CSS hack, but seems like that is not possible. – Dexter Schneider Jul 28 '12 at 19:07

What you want to do is style everything in your stylesheet as you normally would for any other browser. AFTER you import the normal stylesheet into your page you will then import an IE-specific stylesheet with the regular <!--[if IE]> conditional statement.

Following this method imports the styles for all browsers and then uses your IE-specific styles to override those that are not compatible, don't render correctly, or need to be adjusted for use in IE.

share|improve this answer

You don't, simply use IE conditional comments to load a specific IE stylesheet:

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

There are CSS hacks, but note that a hack requires using a parsing error (of some sort) to target a specific CSS rule to a browser. These are unlikely to be corrected in subsequent patches to a particular incarnation of a browser, but they will be corrected in later versions (so IE 9 and 10 aren't affected by the CSS hacks that target IE 6, or IE 5 for Mac...).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.