Tagged Questions
26
votes
7answers
6k views
How to tell if a browser is in “quirks” mode?
Let's suppose you have a page with a relatively strict doctype and HTML markup that's pretty close to compliant, but perhaps misses in a few silly ways that are out of your control.
How can you ...
11
votes
1answer
362 views
Which mode is IE6 if doctype is html as HTML5?
If web page has doctype as HTML5.
<!doctype html>
Which render mode is it for IE6?
The document.compatMode tells CSS1Compat. It looks Standard mode, not quirks mode. But, is it true? IE6 is ...
5
votes
3answers
158 views
Is quirks mode relevant in 2011?
With all the latest browsers like IE9, FF4, ever updating chrome, etc., do we still need quirks mode?
If yes where is it useful? In which scenario?
5
votes
2answers
98 views
Avoiding messy browser's death
During the past few months, I've been working on a large web application. Repeatedly, we've written code that, according to DOM & JS specifications, should work perfectly, but still manages to ...
1
vote
1answer
300 views
Force standards-mode in browsers, after the page has loaded
I'm having a problem where i have a page that does not have a doctype.
I can't access it on the server so i can't add a doctype declaration myself.
This causes browsers to render in quirks mode ...
1
vote
1answer
584 views
What is Quirks Mode categorized under Document Mode and how to Change it?
I saw my pages information in IE8 Developer Tools.
My Page Document Mode was Quirks Mode.
What is Quirks Mode ? and How To change Document Mode ? What are the others document modes ?
How can ...