Melinda Odom wrote:
> Sorry about this but I changed the doc type and now it seems to 
> render properly in ie at the netrenderer site.

> http://72.9.236.161/index.php/cPath/1

XHTML 1.1 is *not* a good choice...

<http://validator.w3.org/check?uri=http%3A%2F%2F72.9.236.161%2Findex.php%2FcPath%2F1&charset=%28detect+automatically%29&doctype=Inline&group=0&user-agent=W3C_Validator%2F1.606>

...since your markup is very far from that standard.



A *complete* HTML 4.01 doctype:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd";>

...would make more sense, since that's the standard closest to your
markup...

<http://validator.w3.org/check?uri=http%3A%2F%2F72.9.236.161%2Findex.php%2FcPath%2F1&charset=%28detect+automatically%29&doctype=HTML+4.01+Transitional&group=0&user-agent=W3C_Validator%2F1.606>

...and the complete doctype version _will_ trigger the right mode in IE.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to