1

IE8 Developer ツールバーの Quirks モードとは何ですか? Quirks モードと IE8 標準モードでページのレンダリングが異なるのはなぜですか?

4

3 に答える 3

2

Simply speaking, it is for really old webpages to show in the way it always has been on IE. So if a webpage's HTML doesn't start with a DOCTYPE that indicates Standard Compliance Mode, then IE will show it in Quirks mode. In such mode, IE uses its own Box Model to render the page elements.

A simple example is: IE's box model adds padding to the inside of the width, so a div occupies the width number of pixels, but Standard Compliance mode add the padding to the width, so a div will occupy width + padding number of pixels.

You can try a div with width 300px and padding 100px and click between the modes in IE Developer's bar to see the difference.

More info at: http://en.m.wikipedia.org/wiki/Quirks_mode

于 2010-10-28T07:12:56.070 に答える
1

http://www.quirksmode.org/css/quirksmode.htmlが役に立つと思います。

于 2010-10-28T07:13:12.150 に答える
0

Quirks モードは基本的にレガシー モードであり、誰も HTML 標準に準拠していなかった時代に書き戻された Web ページを IE でレンダリングできるようにします。

于 2010-10-28T07:13:57.910 に答える