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

What is the difference between <section> and <div> in HTML? Aren't we defining sections in both cases?

Thanks.

share|improve this question
4  
Don't do anything the above commenter says unless you really want to. – Charles Boyung Oct 3 '12 at 15:47
5  
As I’m not a disinterested party to the accept-an-answer issue here, I shall refrain from commenting on it. – Paul D. Waite Oct 18 '12 at 14:26
2  
@PaulD.Waite Meta irony... – bwheeler96 Jan 13 at 21:23

6 Answers

<section> means that the content inside is grouped (i.e. relates to a single theme), and should appear as an entry in an outline of the page.

<div>, on the other hand, does not convey any meaning, aside from any found in its class, lang and title attributes.

From the spec:

<section>

The section element represents a generic section of a document or application. A section, in this context, is a thematic grouping of content, typically with a heading.

Examples of sections would be chapters, the various tabbed pages in a tabbed dialog box, or the numbered sections of a thesis. A Web site's home page could be split into sections for an introduction, news items, and contact information.

...

Note: The section element is not a generic container element. When an element is needed for styling purposes or as a convenience for scripting, authors are encouraged to use the div element instead. A general rule is that the section element is appropriate only if the element's contents would be listed explicitly in the document's outline.

(http://dev.w3.org/html5/spec-author-view/the-section-element.html#the-section-element)

<div>

The div element has no special meaning at all. It represents its children. It can be used with the class, lang, and title attributes to mark up semantics common to a group of consecutive elements.

Note: Authors are strongly encouraged to view the div element as an element of last resort, for when no other element is suitable. Use of the div element instead of more appropriate elements leads to poor accessibility for readers and poor maintainability for authors.

(http://dev.w3.org/html5/spec-author-view/the-div-element.html#the-div-element)

share|improve this answer
3  
+1 Great answer. – JcFx Oct 18 '12 at 13:25

<section> marks up a section, <div> marks up a generic block with no associated semantics.

share|improve this answer

I wrote about this back in April: http://www.iandevlin.com/blog/2011/04/html5/html5-section-or-article

share|improve this answer

The section tag provides a more semantic syntax for html. div is a generic tag for a section. When you use section tag for appropriate content, it can be used for search engine optimization also. section tag also makes it easy for html parsing. for more info, refer. http://blog.whatwg.org/is-not-just-a-semantic

share|improve this answer
“section tag also makes it easy for html parsing” — eh? Do you mean for generating an outline of the page? – Paul D. Waite Aug 4 '11 at 12:14

<div>—the generic flow container we all know and love. It’s a block-level element with no additional semantic meaning (W3C:Markup, WhatWG)

<section>—a generic document or application section. A normally has a heading (title) and maybe a footer too. It’s a chunk of related content, like a subsection of a long article, a major part of the page (eg the news section on the homepage), or a page in a webapp’s tabbed interface. (W3C:Markup, WhatWG)

My suggestion: div: used lower version( i think 4.01 to still) html element(lot of designers handled that). section: recently comming (html5) html element.

share|improve this answer

Semantically not much difference though <section> might be considered a bit more specific while <div> is a rather generic building block.

share|improve this answer

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.