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?
|
|
you can read in this links link : http://en.wikipedia.org/wiki/Quirks%5Fmode http://www.quirksmode.org/css/quirksmode.html http://www.cs.tut.fi/~jkorpela/quirks-mode.html
|
|||
|
|
|
|
Quirks mode means your page is running without a document type declared, the document type is defined at the very top of a page and it denotes how the browser should read the HTML. This is StackOverflows doctype:
w3.org specifies web standards and document types, because Stack Overflow uses this doctype it must adhere to the specification of that doctype.
|
|||
|
|
|
|
In past days when web browsers did not have full/correct implementations of CSS, developers relied on these idiosyncrasies to make their pages render properly. However, as browsers became more standards-compliant, these pages no longer rendered correctly, as they were written for what bascially was a different type of CSS. This is where quirks mode comes in, as it handles pages written for these broken CSS implementations. So in 2009, you don't really need to worry about quirks mode unless you're handling older CSS, or older browsers. Just write your CSS to current web standards, and you be OK. |
||
|
|
