vote up 1 vote down star

I keep being confused about the two. Can someone sum up the key difference(s) and maybe a typical use case very briefly?

Is XHTML just more "strict" / clean / XML-y?

If XHTML is just the "more correct" version of HTML, why should I ever use HTML at all?

flag

2 Answers

vote up 5 vote down check

XHTML 1.0 is HTML 4.01 reimplemented using XML instead of SGML. This lets you process it with XML tools (but you need to be careful with the output if you want to support IE) and mix in other XML namespaces such as SVG or MathML (unless you want to support IE). Writing XHTML that is HTML compatible is a fair amount of effort and most people who try it screw it up so I suggest sticking to HTML.

link|flag
1  
XML is also subset of SGML (en.wikipedia.org/wiki/…) – Simon P Stevens Jul 16 at 10:40
after HTML5 announce, XHTML is a dead branch of HTML? – dfa Jul 16 at 10:41
So basically, XHTML is "more correct" XML-wise, but browsers (IE, at least) don't get it? – Hanno Fietz Jul 16 at 10:41
It has things like namespaces grafted on. As far as I know, those are not available in SGML. – David Dorward Jul 16 at 10:42
1  
@dfa It was lack of support for XHTML from Microsoft, and lack of interest from browser vendors in XHTML 2 that killed it, not HTML5. HTML5 was a reaction to that, not the cause. – David Dorward Jul 16 at 10:42
show 5 more comments
vote up -1 vote down

XHTML is more or less HTML 4.x reimplemented in XML (instead of based on SGML directly) which results in some additional features like namespace support that make it easier to extend for problem specific markup while keeping it valid.

The problem is, that to this point as far as I know no browser actually interprets XHTML as XML completely so it's mostly a bonus for developers who want to operate on the generated markup (since it's XML and can therefor be parsed more easily).

So to keep it simple: XHTML is more strict.

link|flag
Opera, Safari, Chrome, Firefox, Konqueror and every other major browser except Internet Explorer interpret XHTML as XML if it is served with the correct content-type. – David Dorward Jul 16 at 10:45
XHTML is not more strict. It throws away rules in HTML (such as "A table must have a tbody") because it can't handle implicit elements and the working group didn't want to make people have to start writing them explicitly. – David Dorward Jul 16 at 10:46
Ah nice, didn't know that XML support was already fully integrated into other browsers. I always thought it was only limited. – Horst Gutmann Jul 16 at 11:13

Your Answer

Get an OpenID
or

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