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;
...
}