Are there any IE9 CSS hacks? I tried to find some but haven't been successful.

link|improve this question
1  
To accomplish what exactly? – Alec Oct 8 '10 at 13:06
1  
@Alec: I think he's referring to css3 Attributes which were not supported by IE yet untill IE9 which just released it's beta – krike Oct 8 '10 at 13:08
1  
-1 What does this even mean? What do you define as CSS hacks? What are you trying to accomplish with them? Why are you actively seeking them out over the internet? – Yi Jiang Oct 8 '10 at 13:12
2  
+1 for the -1. if you don't know what a css hack is, you have never done cross platform web development, and you shouldn't be voting on questions about it – Matt Briggs Oct 8 '10 at 13:14
2  
@Yi: A css hack is invalid html/css that a specific browser with a broken implementation will still execute, thus allowing you to target rules only for that browser. The only difference between the holly hack and conditional comments is that conditional comments works that way by design. But both are non standard ways to target a specific browser, which makes them css hacks. – Matt Briggs Oct 8 '10 at 13:34
show 2 more comments
feedback

10 Answers

up vote 2 down vote accepted

IE9 is claimed to be much improved/standard-compliant product from Microsoft and by the way IE9 isn't fully out there and above all using browser hacks is not a good practice at all. There exist other solutions such as reset CSS, IE conditional comments, etc you can put to use.

link|improve this answer
8  
Yeah-yeah. I thought that I'll never need ie9 hack. But... I need it. – FlashTrava Oct 8 '10 at 13:29
Thanks. I'll use IE conditional comments. – FlashTrava Oct 8 '10 at 13:38
17  
why can't people just either answer the question or not respond. we know that hacks aren't supposed to be used. thanks... – Alex V Apr 4 '11 at 20:35
1  
BS. This is not an answer to his question. It's a suggestion / alternative. EDIT: See Yi Jiang's comment above about Conditional Comments vs CSS Hacks. The OP was asking for CSS hacks, not conditional comments or reset CSS. – Joshua Apr 14 '11 at 16:17
feedback

IE6 - IE10pp4 hacks

No IE9 or IE10pp4 specific hacks have been found.

#element {
    color:black;
}
#element {
    *color: blue;    /* IE6+7, doesn't work in IE8/9 as IE7 */
}
#element {
    _color: red;     /* IE6 */
}
#element {
    color: green \0/; /* IE8+9  */
}
@media all and (min-width:0) {
    #element { color:pink \0/; }  /* IE9-IE10pp4 */
}

The space before \0/ is REQUIRED unless you want to match Opera, too.

source

link|improve this answer
2  
The \0/ hack looks like a person from the shoulders up jumping for joy! – alex Jul 20 '11 at 1:01
Really? Awesome :) – alex Jul 20 '11 at 13:55
I believe he is referred to as the celebrating man. \0/ – David Murdoch Aug 9 '11 at 14:38
-1 These "IE9 specific CSS hacks" have not been fixed yet in IE10, and so IE10 will interpret those same styles, and you have the possibility of pages breaking in IE10 in the future. See: mathiasbynens.be/notes/safe-css-hacks – Web_Designer Feb 20 at 9:54
@Web_Designer, IE10 doesn't even exist. If you read the comments from the source link you will see that this is actually an IE9+ hack. I've edited the answer to reflect this information. – David Murdoch Feb 20 at 15:29
show 4 more comments
feedback

You will still need hacks

selector {
    prop: value;   /* real browsers */
    _prop: value;   /* ie6 */
    *prop: value;   /* ie6 ie7 */
    prop: value\9;  /* ie8 ie9 */
}
link|improve this answer
You guys can use whatever you want. I prefer to have all my styles in one stylesheet. and prefer having my hacks in context. I have no guilt as microsoft is the one to blame for the bad code. I only use conditional comments to load tons of polyfills for ie loosers, I mean users. – shaggy Apr 9 '11 at 0:58
Giving -1 for bad information. *prop only works in IE7 and below. \9 only works in IE8. EDIT: I realize it may have worked in the IE9 betas. – Joshua Apr 14 '11 at 16:10
If _prop and *prop are both recognized by IE6, then IE6 is always going to use *prop since it's listed last. Reverse the order so that IE7 will use _prop, and IE6 will see _prop but then override it with *prop. – daGUY Dec 27 '11 at 21:23
feedback

Conditional comments work as normal.

link|improve this answer
Sarfraz was the first) – FlashTrava Oct 8 '10 at 13:38
feedback

"\9" works fine for me, smth like:

.inline-blocks {
...
width: 25%;
width: 24.9%\9; /* IE9 blah blah... */
link|improve this answer
-1 again for 24.9%\9 not working in IE9. That is a means of targeting IE8 ONLY, and does not work with IE9. EDIT: I realize it may have worked in the IE9 betas. – Joshua Apr 14 '11 at 16:11
As for me it works great in IE9 – whyleee May 5 '11 at 0:18
This also effects IE8, if I'm not mistaken. – Muhd May 3 at 3:04
feedback

I prefer Paul Irish's method:

Stick this in place of the opening <html> tag:

<!--[if lt IE 7 ]> <html class="ie6"> <![endif]-->
<!--[if IE 7 ]>    <html class="ie7"> <![endif]-->
<!--[if IE 8 ]>    <html class="ie8"> <![endif]-->
<!--[if IE 9 ]>    <html class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html class=""> <!--<![endif]-->

And use it like this:

.foo { color: black; } /* Awesome browsers */
.ie8 .foo { color: green; } /* IE8 */
.ie7 .foo { color: blue; } /* IE7 */
.ie6 .foo { color: red; } /* IE6- */

It's really an ingenious way to do IE specific CSS styling. But like other's have mentioned be careful not to overdo browser detection. :)

link|improve this answer
feedback

Good post and great comments.

Based on my humble experience during my latest project, I have found IE8 more compatible than IE9 so far, at least for those cases that we have been involved in. For example, IE9 renders a much heavier 'font-weight' for headings which may result in a line break. We had to use 'conditional comments' in order to fix it. For more detailed info, please refer to: 'The Process' heading in our site.

link|improve this answer
"IE9 renders a much heavier 'font-weight' for headings which may result in a line break. We had to use 'conditional comments' in order to fix it." ಠ_ಠ – thepeer Dec 4 '11 at 17:50
feedback

Conditional Comments requires additions to the HTML, which is not allowed in many projects. If I were to use conditional comments on my personal projects, I'd just bounce the user to a page that says, "No Microsoft browser will ever support this site. Please open in any other current browser."

link|improve this answer
feedback

How about this?

#element:nth-child(n) {
    color: purple \9; /* IE9 Only */
}
link|improve this answer
feedback

The only hack that works for me is this one (IE8 only - not IE9 too):

/* IE8 */
@media \0screen {
  .item { background: #000; }
}
link|improve this answer
Why the downvote? It's the only one that worked for me with padding-left. I combined it with the *-IE7-and-below hack from here: net.tutsplus.com/tutorials/html-css-techniques/… and got the hack proposed from chovy from here: dimox.net/personal-css-hacks-for-ie6-ie7-ie8 – Cohen Apr 2 at 19:01
feedback

Your Answer

 
or
required, but never shown

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