vote up 1 vote down star

since IE won't render XHTML as XHTML, but treat it as HTML instead, when can this actually cause problems for IE?

flag

24% accept rate

3 Answers

vote up 1 vote down

i know of one case, where

<div style="clear:both" />

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.

link|flag
1  
All browsers should do this when in rendering XHTML in HTML mode—self-closing tags are a feature of XML, not XHTML. This is why the HTML compatibility guidelines recommend that you do not use that form for elements that do not normally close themselves in HTML (like <img> and <br>): w3.org/TR/xhtml1/#C_3 – Miles May 29 at 4:48
@Miles True. IIRC, in xHTML self-closing tags should be closed properly like this "<img />" - the space is optional but a failsafe for browsers that do not support the slash – Hannson May 29 at 4:53
vote up 1 vote down

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.

A list of all known Internet Explorer Bugs

link|flag
Writing HTML avoids event more problems, since you don't get caught out with <foo /> issues. – David Dorward May 29 at 8:20
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.