vote up 3 vote down star
1

To target elements only in IE browsers i'll use

IE6:

* html #nav li ul {
    left:                                 -39px!important;
    border: 1px solid red;
}

IE7:

*+html #nav li ul  {
    left:                                 -39px!important;
}

Does anyone know how to target IE8?

flag
Hey, it passed ACID2, so what do you need an IE8 hack for? (Just joking...) – Boldewyn Oct 26 at 9:28

7 Answers

vote up 15 vote down

Use conditional comments to target IE only.

Example:

<!--[if gte IE 8]>
<style>
(your style here)
</style>
<![endif]-->

Everything inside the two <!--> will be ignored by all non-IE browsers as a comment, and IE versions that are less than IE8 will skip it. Only IE8 and greater will process it.

link|flag
+1, beat me to it :) – Darko Z Mar 19 at 0:49
1  
I'd go so far as to say "Use conditional comments to target any version(s) of IE". – David Dorward Jul 22 at 16:22
Rex nailed it. CSS hacks are called hacks for a reason - they're unprofessional programming. Use conditional comments. blogs.msdn.com/ie/archive/… – Jon Galloway Jul 22 at 16:22
1  
I guess your conditional statements do the trick, though this doesn't really answer the question by Chris who wants to know of a selector to address IE8 only – Michiel Aug 8 at 20:55
1  
@Michiel since that's not possible without exploiting a browser bug, the answer has two parts: a) don't do that; and b) here's how to do it instead. – Rex M Aug 8 at 21:53
vote up 3 vote down

Why would you want to target IE8 only? If your CSS is well written, you should not have any problems in IE8.

ROFL let me rephrase that for you If your IE8 is well written, you should not have any problems with CSS.

I do wish there was a star hack equivalent for IE8... maintaining CSS for all version in one stylesheet is becoming more and more complicated now.

They should have had CSS conditional comments. Pity they were so confident as to kill the hack before making sure the bugs were gone.

link|flag
That's simply not true, every browser has bugs. Usually you try to work around them in various ways -- making your layout tolerant of the bug, avoiding the bug, or, as we are asked here, by adding rules that target the buggy renderer directly. This is usually a last ditch sort of thing -- but also it can be a budget issue: you may simply not have the resources to afford a more elegant solution. – Adam Luter Jun 3 at 14:02
Your "answer" should be on the comment. – Adrian Godong Jul 22 at 16:24
vote up 2 vote down

Take a look at these:

/* IE8 Standards-Mode Only */
.test { color /*\**/: blue\9 }

/* All IE versions, including IE8 Standards Mode */
.test { color: blue\9 }

(Source: David Bloom’s CSS hack for IE8 Standards Mode)

link|flag
there's an updated note on this that says it may actually target IE7 also – philfreo Nov 11 at 18:03
vote up 1 vote down

In the ASP.NET world, I've tended to use the built-in BrowserCaps feature to write out a set of classes onto the body tag that enable you to target any combination of browser and platform.

So in pre-render, I would run something like this code (assuming you give your tag an ID and make it runat the server):

HtmlGenericControl _body = (HtmlGenericControl)this.FindControl("pageBody");
_body.Attributes.Add("class", Request.Browser.Platform + " " + Request.Browser.Browser + Request.Browser.MajorVersion);

This code enables you to then target a specific browser in your CSS like this:

.IE8 #nav ul li { .... }
.IE7 #nav ul li { .... }
.MacPPC.Firefox #nav ul li { .... }

We create a sub-class of System.Web.UI.MasterPage and make sure all of our master pages inherit from our specialised MasterPage so that every page gets these classes added on for free.

If you're not in an ASP.NET environment, you could use jQuery which has a browser plugin that dynamically adds similar class names on page-load.

This method has the benefit of removing conditional comments from your markup, and also of keeping both your main styles and your browser-specific styles in roughly the same place in your CSS files. It also means your CSS is more future-proof (since it doesn't rely on bugs that may be fixed) and helps your CSS code make much more sense since you only have to see

.IE8 #container { .... }

Instead of

* html #container { .... }

or worse!

link|flag
Just for completeness, the jQuery plugin that adds browser and platform classes that you can use in CSS (and even in your jQuery functions) is available at jquery.thewikies.com/browser – jsidnell Apr 28 at 8:17
vote up 0 vote down

Why would you want to target IE8 only? If your CSS is well written, you should not have any problems in IE8.

link|flag
Good point. People are so comfortable with hacks that they forgot standards exists. – Adrian Godong Jul 22 at 16:21
vote up 0 vote down

OK so, it isn't css hack, but out of frustration for not being able to find ways to target ie8 from css, and due to policy of not having ie specific css files, I had to do following, which I assume someone else might find useful:

if (jQuery.browser.version==8.0) {
   $(results).css({
         'left':'23px',
         'top':'-253px'
      });
}
link|flag
vote up 0 vote down

CSS style only for IE8:

.divLogRight{color:Blue; color:Red\9; *color:Blue;}

Only IE8 will be Red.

first Blue: for all browsers.

Red: IE6,7,8 Only

Second Blue: IE6,7 Only


So Red = for IE8 only.

http://paulirish.com/2009/browser-specific-css-hacks/

link|flag

Your Answer

Get an OpenID
or

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