since IE won't render XHTML as XHTML, but treat it as HTML instead, when can this actually cause problems for IE?
|
|
|
|
|
|
|
i know of one case, where
in browsers that support XHTML, the div is closed. But IE will treat the div as still open, so the layout can have unexpected result later. |
||||||
|
|
|
Internet Explorer will have trouble distinguishing XHTML documents from XML documents if the MIME-type is not specified as text/html. However, because it fully supports HTML 4.01 the majority of problems arise from inconsistent and non-standards implementations of positioning, layout, and CSS properties. To avoid any problems it is best to write valid XHTML and specify a DOCTYPE. |
||
|
|
|
These all apply to any browser treating XHTML as text/html rather than specifically IE, but you should read Appendix C of the XHTML 1.0 spec here: http://www.w3.org/TR/xhtml1/#guidelines |
||
|
|
