Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here's the site that renders well in IE5.5, IE6 and IE8+, but not IE7.

http://www.imaputz.com/cssStuff/bigFourVersion.html .

There is a lot of job done there (over 9000 hacks). Is there a way for IE7 to render it in IE6 mode?


UPDATE: I know the source of the problem. It's here:

html>body tbody {
    ...
    height: 262px;
    ...
}

UPDATE2: I've read this and fixed it. WAAHOOO, i'm a css guru!!!

Change previous code to this:

html>/**/body tbody {
    ...
    height: 262px;
    ...
}
share|improve this question
Unfortunately the compatibility setting was introduced in IE8. So I think you may be out of luck. But we'll see. – Jason McCreary Oct 26 '11 at 19:40
2  
"(over 9000 hacks)" - death by 9000 cuts? – jball Oct 26 '11 at 19:40
I would suggest if you have 9000 hacks, you're probably doing things the hard way. – Mystere Man Oct 26 '11 at 19:46
That's the only CSS-only example that works in ie6 – Dan Oct 26 '11 at 19:47
1  
Yo! I made that photo! :) – atzu Oct 26 '11 at 20:55
show 1 more comment

1 Answer

Conditional comments can't be a solution. They don't work in IE7. You should use CSS hacks instead. You can find a list of reliable hacks here: http://www.webdevout.net/css-hacks

IE 6 and below

* html {}

IE 7 and below

*:first-child+html {} * html {}

IE 7 only

*:first-child+html {}

IE 8 only

 .ie8only { color /*\**/: #fff\9 }

(I would dream of some cleaner solution, but can't get an idea...)

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.