Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to know if it would be ok to have a section tag contain no heading tags inside of it. I have looked at couple of examples and they all have heading tags inside of them.

The structure I implement for my section tag at the moment is:

<section>
    <article>
        <div>
        </div>
    </article>
    <article>
        <div>
        </div>
    </article>
</section>
share|improve this question

migrated from webmasters.stackexchange.com Jan 26 at 15:24

2 Answers

up vote 0 down vote accepted

HTML5 does not require the use of headers within an article element however it can be useful if you want to publish additional details such as date of publishing as well as you could include a nice footer to each article as well.

This would be useful:

<section>
    <article>
        <header>
            <hgroup>
                <h1>This is the Article Header</h1>
                <h2>This is a tagline header</h2>
            </hgroup>
            <time class="dtstart" datetime="2011-10-05T09:00Z">9am Oct 5th</time>
         </header>
         <div>
             <p>This is the content</>
         </div>
         <footer>
             <p>Article Authored by Username<br>
             Twitter Link<br>
             Google Plus Author Link</p>
         </footer>
</article>

By using the above code you can style the site without making hardly any addition classes due to the fact the main header and footer of your site won't be contained within a section, or least I hope you don't have it.

So styling article footers and headers and everything else in their is possible without making addtional classes which is very code freindly for example

article header h1 {font-size:20px;}
article header h2 {font-size:12px;}
article div h1 {font-size:36px;}
article div h2 {font-size:26px;}
article footer {font-size:12px;}
article time {fonts-size:9px;}
article hgroup {padding:20px;}
section article {padding:20px;}

Notice how with the above code there is no need for classes to be made, its pretty awesome and very flexible. This would not be useful:

<section>
    <article>
        <header>
            <h1>The Header</h1>
        </header>
        <div>
            <p>I am the content</p>
        </div>        
    </article>
</section>

The instructions on using HTML5 is very vague and many people agru if header should even be used at all within an Article but headers are useful if you have a lot of content to stick in their such as publish date, author, more than one H1, and H2 etc.

Footers in articles I find more useful but generally if I'm using the footers I use the headers as well, generally you should always code with as little code as possible and you should always consider Googles snippets as an alternative over some HTML5's if you want the benefit from those.

You should factor in what is easiest to style your site, using header can be easier to use without making additional classes for example.

share|improve this answer

The current spec only says that it typically has a header. There's nothing that says it requires one.

Sources:

http://www.w3.org/TR/html51/sections.html#the-section-element

http://developers.whatwg.org/sections.html#the-section-element

http://html5doctor.com/the-section-element/

share|improve this answer
Hi, thanks for the reply. Ok I understand that the section tag does not always require a heading inside it. But if it did have a heading, can it contain heading tags which have been used elsewhere on the page. For example, if I used <h1> after the body tag, and then used <h2> and <h3> later on, would it be valid to use the <h1> tag again within a section after implementing the <h3> tag? – Human Jan 25 at 22:52
Yes, that's perfectly valid. Articles and Sections may be thought of as self contained parts of the page with their own heading hierarchy. They may not be the best examples, but the code shown in the sources I posted in my answer might help clarify. – BigBagel Jan 25 at 23:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.