vote up 21 vote down star
9
<!DOCTYPE html>

It is supposed to be backwards compatible with HTML4 and XHTML. John Resig posted about some of the benefits.

As long as we don't use any of the new and not supported yet features, would there be any downside to start building sites with this doctype?

flag

9 Answers

vote up 27 vote down check

Well consider this:

When serving as text/html, all you need a doctype for is to trigger standards mode. Beyond that, the doctype does nothing as far as browsers are concerned.

When serving as text/html, whether you use XHTML markup or HTML markup, it's treated by browsers as HTML.

So, really it comes down to using the shortest doctype that triggers standards mode (<!DOCTYPE html>) and using HTML markup that produces the correct result in browsers.

The rest is about conforming, validation and markup prerference.

With that said, using <!DOCTYPE html> now and trying to make your markup conform to HTML5 is not a bad idea as long as you stick to stable features that work in browsers now. You wouldn't use anything in HTML4 or XHTML 1.x that doesn't work in browsers, would you?

In other words, you use <!DOCTYPE html> with HTML4-like markup while honoring things that have been clarified in HTML5. HTML5 is about browser compatibility after all.

The downside to using HTML5 now is that the spec can change quite often. This makes it important for you to keep up with the spec as it actively changes. Also http://validator.nu/ might not always be up-to-date, but http://validator.w3.org/ isn't always up-to-date either, so don't let that stop you.

Of course, if you want to use XHTML 1.0 markup and conform to XHTML 1.0, then you shouldn't use <!DOCTYPE html>.

Personally, I always use <!DOCTYPE html> for HTML.

link|flag
1  
I thought that omitting the URI throws browsers into quirks mode, thus making working to standards a futile effort. – graham.reeds Oct 15 at 8:09
vote up 0 vote down

Take a look at this blog post! Not really a fan of HTML5 http://www.webscienceman.com/2009/01/24/html-xhtml-html5-future-html/

link|flag
vote up 2 vote down

Use backwards-compatible HTML5 features with HTML4 Strict DOCTYPE.

Use of HTML5 DOCTYPE is not encouraged by the working group yet, because once it becomes popular it won't be possible to make incompatible changes without "breaking the web". It's not only matter of new tags and attributes, but also handling of JavaScript DOM and security model, which are much more complex and fragile.

link|flag
vote up 1 vote down

Consider your audience and your needs. I write pages such as class tests with a target audience of students in my courses who use FireFox 3 in an Ubuntu equipped computer laboratory. I need SVG with MathMl embedded as a foreignObject in the SVG. I use the HTML5 doctype and new HTML5 tags freely.

link|flag
vote up 3 vote down

Based on the latest IE8 beta, it seems that MS will use the HTML5 doctype as a bypass for the IE8 mode switching quagmire. It seems that the biggest risk with deploying the HTML5 doctype early is that if people publish a lot of IE8-incompatible content with the HTML5 doctype before IE8 ships, MS might get cold feet about making the mode situation simple for HTML5.

link|flag
vote up -4 vote down

Personally I'd say no. There is no clear benefit to HTML5 and in fact would go as far as to say that the whole thing is botched from the start.

Having specialised tags for header, footers and sidebars is a huge mistake - you've got them already in the form of tags (div) and names (classes/id's). Why do we need the specialist ones? XHTML1.1 is good enough, period. In fact, since most browsers don't support HTML4 correctly, there is little point in using a doctype that is going to take years to get proper support.

link|flag
It's about semantics. You could perfectly well get rid of almost every single tag in HTML and use nothing but div, span and style/class attributes. But you remove all semantic value from the document by doing so. – Laurent Oct 2 '08 at 3:49
Just think of how useful it'll be for search engines. – Laith J yesterday
@Laurent: So if I want a header to be now a sidebar, I have to go through all my css and markup switching them around because it's no longer semantically correct? No. Make it a div, call it what it does and use it how you will. @Laith:In what respect will it be good for search engines? – graham.reeds yesterday
vote up 0 vote down

if you're going to use the doctype, experiment with the features. As long as they don't go into a production site, and you test them thoroughly, have at it.

link|flag
vote up 1 vote down

My question to you would be why use it if you don't use any of the new/unsupported features. I'm not saying you couldn't play around with it, but why start building sites with a doctype that offers no benefits and could be supplemented by XHTML5.

link|flag
vote up 0 vote down

I'd say use it and test extensively. Then let us know if it blew your house up or something. :')

link|flag

Your Answer

Get an OpenID
or

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