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: Difference between revisions

From WHATWG Wiki
Jump to navigation Jump to search
(+ Getting Internet Explorer to recognize the new elements)
 
m (+ link)
Line 9: Line 9:
</script>
</script>
</pre>
</pre>
([http://ejohn.org/blog/html5-shiv/ More details].)

Revision as of 15:01, 17 July 2008

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