XHTML 1.1 is intended to be used with the "application/xhtml+xml" MIME type. Yet almost no one does this, because IE doesn't handle the "application/xhtml+xml" MIME type correctly, and draconian error handling is seen as being unfriendly to users.

If our site is stuck with the "text/html" MIME type, is there any advantage to using the XHTML 1.1 doctype over HTML4 or HTML5?

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

See this 8-year-old discussion of this very topic, which leads to this in-depth article. In short: there are disadvantages to doing so. Do not do it.

The executive summary, from the article:

If you use XHTML, you should deliver it with the application/xhtml+xml MIME type. If you do not do so, you should use HTML4 instead of XHTML. The alternative, using XHTML but delivering it as text/html, causes numerous problems that are outlined below.

link|improve this answer
feedback

There isn't any actual advantages with using XHTML 1.1. Use HTML 5; it will replace both HTML 4 and XHTML 1.1 (in the form of XHTML 5), it can be served with a text/html MIME type, and it supports both HTML-style and XHTML-style tags.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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