A user account is required in order to edit this wiki, but we've had to disable public user registrations due to spam.

To request an account, ask an autoconfirmed user on Chat (such as one of these permanent autoconfirmed members).

Authoring

From WHATWG Wiki
Revision as of 15:01, 17 July 2008 by Mpt (talk | contribs) (+ link)
Jump to navigation Jump to search

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.)