I'm having a bit of trouble w/ some CSS on a page. It's valid CSS and Strict HTML. It renders fine in every* browser except for IE (I have only tried 7). Is there a way to tell if it's rendering the page in Quirks or Standard mode? I suspect it may be doing quirks mode, as that's about the only explanation I can think of.

*Opera, Chrome, Safari, Firefox ... not really every, but close enough.

link|improve this question

3  
document.compatMode (stackoverflow.com/questions/627097/…) – KennyTM Mar 3 '10 at 19:28
1  
have you looked at this: msdn.microsoft.com/en-us/library/cc288325(VS.85).aspx – No Refunds No Returns Mar 3 '10 at 19:29
Thanks for the link Kenny. I don't use Javascript much so that really helped. – aslum Mar 3 '10 at 19:39
feedback

1 Answer

Within IE, you can open up the developer tools (Tools->Developer Tools, or F12), and along the top, it will list Document Mode: . You can see there in what mode the browser is rendering your page.

One word of caution: IE likes to treat pages on your local network differently from pages on the internet. Specifically, it will sometimes default into compatibility view for pages on the local intranet.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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