I have a bug in my program's user interface which can only be recreated in browser mode IE8 and Document type "quirks mode". I have never usually have to work with html/css so I am a little lost.

My code sample is a bit too large to fit comfortably on this page, but can be found here. I forgot to attach the relevant css which can be found here.

At first glance, it appears that the <thead> does not scroll with the table. after a look with IE8 dev tools, I found that the <thead> and <tr> elements are moving with the horizontal scroll bar as they should, but the child element <th> (first seen on line 19) is staying in place.

When I manually change specific attributes of the <th> tag, (e.g. align, text-align), all of a sudden, the table headers will scroll properly. When I try to implement these in the code, they do not fix the problem.

Any help would be appreciated. Thanks in advance.

link|improve this question

60% accept rate
Unless your page is making Internet Explorer drop from standards mode into quirks mode, you shouldn't worry about making it work in that mode. – tw16 Jul 27 '11 at 21:45
Unfortunately, it is a company requirement. – k_Dank Jul 28 '11 at 16:29
1  
In that case you should ask the company why it is a requirement. IE quirks mode is the equivalent of IE 5.5! Microsoft have totally forgotten about IE5.5 and are trying to kill off IE6! There is absolutely no reason that your page should work in BOTH standards mode and quirks mode. – tw16 Jul 28 '11 at 18:33
I am intrigued to know what came of this. Did you explain why it is silly to want this. – tw16 Aug 3 '11 at 9:37
Yes, I explained that we shouldn't have to do it for both. I explained that just because one QA tester found a defect while messing with ie8 developer settings, we shouldn't make changes which could risk the functionality we already have. Thanks you for the help. – k_Dank Aug 3 '11 at 17:15
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.