<div> vs <section>

Differences

  1. The div element has no special meaning. It is often used as a block of children elements.
    The section element introduced in HTML5 standard is used to group related elements, such as a subsection of a long article.
    In short, the section element provides more semantic syntax than the div element.
  2. Other than the semantic differences, div has its own constructor interface HTMLDivElement.
    section and other HTML5 elements such as article, footer, header, main, navbar do not have this. In fact, their constructors are from HTMLElement.
    Assume that our page is organized as following:
    <div id="root">
    <header></header>
    <section></section>
    <div></div>
    <footer></footer>
    </div>
    We can retrieve elements and print out the constructor for each of them:
    document
    .getElementById('root')
    .querySelectorAll('*')
    .forEach((e) => console.log(e.tagName, ':', e.constructor.name));
    // HEADER: HTMLElement
    // SECTION: HTMLElement
    // DIV: HTMLDivElement
    // FOOTER: HTMLElement
  3. If your page has nested sections, then the h1 elements of the inner sections will have smaller font-sizez than the h1 elements of the outer sections.
    <section>
    <h1>Heading</h1>
    <section>
    <h1>Heading of inner section</h1>
    </section>
    </section>
    The default CSS of browsers defines the font size for them. For example, Chrome defines the different font sizes for h1 at different levels of section:
    /* First level */
    :-webkit-any(article, aside, nav, section) h1 {
    font-size: 1.5em;
    }
    /* Second level */
    :-webkit-any(article, aside, nav, section) :-webkit-any(article, aside, nav, section) h1 {
    font-size: 1.17em;
    }
    /* Third level */
    :-webkit-any(article, aside, nav, section)
    :-webkit-any(article, aside, nav, section)
    :-webkit-any(article, aside, nav, section)
    h1 {
    font-size: 1em;
    }
    /* Fourth level */
    :-webkit-any(article, aside, nav, section)
    :-webkit-any(article, aside, nav, section)
    :-webkit-any(article, aside, nav, section)
    :-webkit-any(article, aside, nav, section)
    h1 {
    font-size: 0.83em;
    }
    You can see the similar definitions in the default styles of Safari.
    This does not happen with the div elements. All the h1 elements will have the same font size no matter how their div containers are structured.

Good practice

Due to the semantic manner, the section elements are often used to build the outlines of the page. We should use the heading elements (h1 - h6) inside section to indicate the summary of section.
<section>
<h2>This section tells about</h2>
</section>
<section>
<h2>Title of another section</h2>
</section>

Good to know

Nowadays, HTML5 standard are supported in modern browsers. But in the old days when it is required to support non-HTML5 browsers such as IE 8, we have to do some additional tasks.