HELP
HELP

Reputation: 14575

Where can I find the HTML5 specs, and details of which browsers support which features?

I was wondering where can I find the HTML5 specs for Internet Explorer, Opera, Firefox and Google Chrome browsers?

Upvotes: 3

Views: 164

Answers (5)

Bert F
Bert F

Reputation: 87533

Fresh off the presses (6 days ago as of the time of this post):

Editor's Draft 25 January 2011
http://dev.w3.org/html5/spec/Overview.html

But below is a very good resource about new features in HTML5, including what is currently supported by various browsers. However, even better than a static mapping of what's currently supported, the book includes a chapter how to detect whether a given feature is supported, so your HTML5 can work on future browsers as more HTML5 features become more widely supported:

Dive Into HTML5
Chapter 2 - Detecting HTML5 Features

Upvotes: 3

Matthew Scharley
Matthew Scharley

Reputation: 132254

You can use modernizr for feature detection in your clients browsers, then do what you can to patch up the user experience.

Alternatively, if all you're looking for is comparisons of different browsers, you can view their homepage in your browser of choice to see what it supports.

Upvotes: 0

Van Coding
Van Coding

Reputation: 24534

Here is a good site: http://caniuse.com/

Upvotes: 2

GolezTrol
GolezTrol

Reputation: 116110

Here. :)

Upvotes: 1

Related Questions