Authoring
From WHATWG Wiki
Please add tips here on using HTML-5-specific features, and making them compatible with older browsers.
Getting Internet Explorer to recognize the new elements
Internet Explorer will not style elements it doesn't recognize. You can get around this with a script. For example:
<script>
document.createElement("section")
</script>
(More details.)
