HTML Doctype Setting / IE Quirks Mode

Posted by Frederico on Stack Overflow See other posts from Stack Overflow or by Frederico
Published on 2010-05-05T03:16:50Z Indexed on 2010/05/05 3:28 UTC
Read the original article Hit count: 452

I'm working within the parameters of an un-reachable developer, whom has created an html generation system for our products.. Whenever a new page is generated he places:

<!-- updated page at 05/MAY/2010 02:58.58 -->
<!-- You must use the template manager to modify the formatting of this page. --> 

resulting in my code looking like:

<!-- updated page at 05/MAY/2010 02:55.30 -->
<!-- You must use the template manager to modify the formatting of this page. -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

I don't believe IE read's this doctype at all, as when looking at the developer screen, it renders in Quirks mode... is there any other way to force IE out of this horrible Quirks mode? I've been trying to reach the developer but he has been rather un-available..

Thank you in advance for any help you might have to offer.

© Stack Overflow or respective owner

Related posts about html

Related posts about quirks-mode