Okay, so I\'m trying to get into this whole HTML 5 thing, and this tutorial (http://www.webreference.com/authoring/languages/html/HTML5/) says that these tags should move t
Firefox 3.6 doesn't support HTML 5 sectioning elements yet. You will have to manually style the tags to be block level:
article, aside, canvas, details,
figcaption, figure, footer, header,
hgroup, nav, section, summary, video {
display: block;
}
You won't need the HTML shim, however; that's just for IE.