Is this a correct way to use the <section> tag?
<section id="container">
<section id="outer">
<section id="inner">
</section>
</section>
</section>
I’m trying to work out whether or not I should use only one section id, and leave the other two sections as just divs?
If you are just using these elements to place things in some position / style things, then you should probably be using divs.
Section is really for grouping content that belongs together – you shouldn’t really have a section without a title (H1 or similar) element describing what the section contains… a few people have made similar mistakes in the past I think:
http://html5doctor.com/the-section-element/
From the spec:
Having said that, it’s perfectly acceptable to nest section elements. Maybe something like: