Feature Request - Multi Monitor support

 From:  Michael Gibson
2777.10 In reply to 2777.9 
Hi Dave, also one more note on this:

> Although that could potentially lead to some breakage if people
> start using browser version dependent stuff in their CSS/HTML/JS
> and want to share their code with others.

One good way to avoid running into this when authoring your HTML is to use quirks mode.

That's when you don't have a <!DOCTYPE declaration before the <html> tag.

When in quirks mode, mshtml basically maintains the same legacy behavior for things like layout and various CSS stuff, so it makes for less chance of accidentally making a dependency on a specific version of IE.

- Michael