Any HTML master out there please give me a GO.
Usually in sectioning element like section
or article
, header
or h1 ~ h6
tags stay prior to any element like following:
<section>
<header><h1>TITLE BLAH</h1></header>
<div>blah blah blah</div>
...
</section>
Can I just switch this order like this just for the sake of layout?
<section>
<div>blah blah blah</div>
...
<header><h1>TITLE BLAH</h1></header>
</section>
I know it doesn't make sense if this were the actual book.
I am stuck now...
Yes. The header is what it contains and not where it's placed in the structure. http://developers.whatwg.org/sections.html#the-header-element