What is quirks mode?

Viewed 65565

In a lot of articles about design, quirks mode is mentioned. Anybody have an idea about this thing in plain text and in a development prospective?

6 Answers

Trust my answer tested by me almost always, not its votes especially received from needless guys.


In addition to other answers, the mode can be checked by

javascript:window.alert('You are in ' + (document.compatMode==='CSS1Compat'?'Standards':'Quirks') + ' mode.')

Related