+ 2
What is the difference between standards mode and quirks mode?🤔
4 Réponses
+ 1
Standards mode is a parsing/rendering mode in Internet Explorer in which it tries to adhere to rendering behaviors as outlined in web standards documents for html and css. Quirks mode is a way to tell internet explorer that it can behave as it did in previous versions of IE, for instance, IE6 where internet explorer had it's own interpretations of how html and css declarations would render and behave.
+ 3
"standards mode" pages are rendered according to the HTML and CSS specifications, while in "quirks mode" attempts are made to emulate the behavior of older browsers.
+ 2
You may find answer in https://www.google.com/search?1)q=standards+mode+vs+quirks+mode&rlz=1C9BKJA_enUS705US705&oq=standards+mode+vs+&aqs=chrome.1.69i57j0.12801j1j4&hl=en-US&sourceid=chrome-mobile&ie=UTF-8,
and
2)https://developer.mozilla.org/en-US/docs/Web/HTML/Quirks_Mode_and_Standards_Mode
0
Thanks