I’m already using the HTML5 Doctype in all my pages. Are there any other html5 specifications/features I can start using right now?
The conditions are:
- Cross browser – support for IE6 is optional but please specify
- No hacks please [javascript or otherwise]
- its completely acceptable if the feature degrades gracefully in older browsers
Of note would be some of the HTML5
inputtypes. As far as I know any browser that doesn’t recognize a type on aninputelement, defaults totype="text". The added value is minimal, but it’s worth being aware of.Given the immense semantic and user experience value, and the graceful degradation, I’ve adopted this on production sites without detriment. In some cases, especially with mixed
doctypes, you could lose out on validation, but that’s to be expected in a transitional period, and a sacrifice I’m willing to take.A lot of good info on the W3C site, regarding the updated form elements and specs.