Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to ask for some simple examples showing the uses of <div> and <span>. I've seen them both used to mark a section of a page with an id or class, but I'm interested in knowing if there are times when one is preferred over the other.

share|improve this question

8 Answers

up vote 75 down vote accepted

div is a block element, span is inline.

This means that to use them semantically, divs should be used to wrap sections of a document, while spans should be used to wrap small portions of text, images, etc.

For example:

<div>This a large main division, with <span>a small bit</span> of spanned text!</div>

Note that it is illegal to place a block level element within an inline element, so:

<div>Some <span>text that <div>I want</div> to mark</span> up</div>

...is illegal.

You asked for some concrete examples, so is one taken from my bowling website, BowlSK:

<div id="header">
    <div id="userbar">
        Hi there, <span class="username">Chris Marasti-Georg</span> |
        <a href="/edit-profile.html">Profile</a> |
        <a href="http://www.bowlsk.com/_ah/logout?...">Sign out</a>
    </div>
    <h1><a href="/">Bowl<span class="sk">SK</span></a></h1>
</div>

Ok, what's going on? At the top of my page, I have a logical section, the "header". Since this is a section, I use a div, with appropriate id. Within that, I have a couple section - the user bar, and the actual page title. The title uses the appropriate tag, h1. The userbar, being a section, is wrapped in a div. Within that, the username is wrapped in a span, so that I can change the style. As you can see, I have also wrapped a span around 2 letters in the title - this allows me to change their color in my stylesheet.

Also note that HTML5 includes a broad new set of elements that define common page structures, such as article, section, nav, etc. Section 4.4 of the HTML 5 working draft lists them, and gives hints as to their usage. HTML5 is still a working spec, so nothing is "final" yet, but it is highly doubtful that any of these elements are going anywhere. There is a javascript hack that you will need to use if you want to style these elements in some older version of IE - you basically need to create one of each element using document.createElement before any of those elements are specified in your source. There are a bunch of libraries that will take care of this for you - a quick Google search turned up html5shiv.

share|improve this answer
3  
Chris, there's a mistake in your text: Even if you set the span's style to “block”, it's still illegal to wrap it around a block-level element! – Konrad Rudolph Oct 8 '08 at 16:23
You cannot use div and span semantically as they don't have any meaning attached to them. div is a meaningless generic block level elements while span is a meaningless generic inline element. – apnerve Oct 17 '11 at 15:06
1  
@apnerve They still have semantics in that block vs. inline elements mean different things to document flow, both from a parsing perspective and from a "reading this source to figure out what is going on" perspective. – Chris Marasti-Georg Oct 17 '11 at 17:37
@ChrisMarasti-Georg : No. That is not semantics. Markup means something when we can identify it and do useful things with it. What difference do you see when you encounter <div>hello</div> and <span>hello</span>. It is as good as plain text for humans and computers alike. – apnerve Oct 17 '11 at 17:47
3  
"Semantics (from Greek sēmantiká, neuter plural of sēmantikós)[1][2] is the study of meaning. It focuses on the relation between signifiers, such as words, phrases, signs and symbols, and what they stand for, their denotata." The signifiers "div" and "span" most certainly stand for something. The HTML spec has a nice breakdown of what block and inline elements stand for. w3.org/TR/html401/struct/global.html#h-7.5.3. The HTML5 draft even puts them in separate groups - Grouping Content and Text-Level Semantics. dev.w3.org/html5/spec/Overview.html – Chris Marasti-Georg Oct 18 '11 at 13:30

<div> is a block-level element and <span> is an inline element.

If you wanted to do something with some inline text, <span> is the way to go since it will not introduce line breaks that a <div> would.


As noted by others, there are some semantics implied with each of these, most significantly the fact that a <div> implies a logical division in the document, akin to maybe a section of a document or something, a la:

<div id="Chapter1">
   <p>Lorem ipsum dolor sit amet, <span id="SomeSpecialText1">consectetuer adipiscing</span> elit. Duis congue vehicula purus.</p>
   <p>Nam <span id="SomeSpecialText2">eget magna nec</span> sapien fringilla euismod. Donec hendrerit.</p> 
</div>
share|improve this answer
divs can be made inline (display:inline;) and vice versa for span but this is the best explanation. They are wrapper tags, span is usually used for sentences or highlighting text, div for sections. – Ross Oct 8 '08 at 16:05
1  
I am aware of the fact that you can modify this with CSS, but that introduces another technology. HTML can stand on its own, and when it does, a div is not inline and it is not intended to be so in its pure form. – Jason Bunting Oct 8 '08 at 16:09

Just for the sake of completeness, I invite you to think about it like this:

  • There are lots of block elements (linebreaks before and after) defined in HTML, and lots of inline tags (no linebreaks).
  • But in modern HTML all elements are supposed to have meanings: a <p> is a paragraph, an <li> is a list item, etc., and we're supposed to use the right tag for the right purpose -- not like in the old days when we indented using <blockquote> whether the content was a quote or not.
  • So, what do you do when there is no meaning to the thing you're trying to do? There's no meaning to a 400px-wide column, is there? You just want your column of text to be 400px wide because that suits your design.
  • For this reason, they added two more elements to HTML: the generic, or meaningless elements <div> and <span>, because otherwise, people would go back to abusing the elements which do have meanings.
share|improve this answer
1  
This is a proper explanation. I wonder why this wasn't accepted as answer. – apnerve Oct 17 '11 at 15:09
1  
because its too far down the page – zipstory.com Apr 1 '12 at 22:35
1  
Just because a good answer wasn't accepted, doesn't mean you can't vote it up. +1 for being useful clarification. – CyberFonic Dec 24 '12 at 1:24

The real important difference is already mentioned in Chris' answer. However, the implications won't be obvious for everybody.

As an inline element, <span> may only contain other inline elements. The following code is therefore wrong:

<span><p>This is a paragraph</p></span>

The above code isn't valid. To wrap block-level elements, another block-level element must be used (such as <div>). On the other hand, <div> may only be used in places where block-level elements are legal.

Furthermore, these rules are fixed in (X)HTML and they are not altered by the presence of CSS rules! So the following codes are also wrong!

<span style="display: block"><p>Still wrong</p></span>
<span><p style="display: inline">Just as wrong</p></span>
share|improve this answer
You said the above code isn't valid, but the browser runs it – Faizan Mar 5 at 11:25
@Faizan How is that relevant? It’s also wrong: not every browser will produce consistent results for this markup. Depending on the doctype you use (and, again, the browser), this may not even run at all, and rather lead to a validation error. – Konrad Rudolph Mar 5 at 13:38
I see, that some browsers are efficient enough to run invalidated code. thats why it ran. Can you recommend me a good validator for HTML.? – Faizan Mar 5 at 22:28
@Faizan The official one is pretty OK: validator.w3.org – Konrad Rudolph Mar 6 at 9:45
1  
"Be conservative in what you do and liberal in what you accept" en.wikipedia.org/wiki/Robustness_principle – jldupont Mar 28 at 13:37

Div is a block element and span is an inline element and its width depends upon the content of it self where div does not

share|improve this answer

As mentioned in other answers, by default div will be rendered as a block element, while span will be rendered inline within its context. But neither has any semantic value; they exist to allow you to apply styling and an identity to any given bit of content. Using styles, you can make a div act like a span and vice-versa.

share|improve this answer
If they had no semantic value, there would be only one of them. One is meant to be a block level division - the other, an inline span – Chris Marasti-Georg Oct 8 '08 at 16:11

I would say that if you know a bit of spanish to look at this page, where is propperly explained.

Howerver, a fast definition would be that div is for dividing sections and span is for appliying some kind of style to an element within a div

share|improve this answer

div implies a line break (ie, it's a block element). span is inline.

If you put a div in your code right before some text, you'll end up (in standards_compliant browsers) with your div content, then a line break, then your text. If you switch that to a span, your div content will be on the same line as your text.

That's really the only big difference. In every other way, they are identical.

share|improve this answer
You've only discussed the (default!) rendering in browsers, not their semantical meaning. In fact, your last sentence is very, very wrong. – Konrad Rudolph Oct 8 '08 at 16:05
Exactly, div has display: block; enabled by default and span has display: inline;. – Ross Oct 8 '08 at 16:06
Very very wrong, how, exactly? In PRACTICE, they are the same. I'm perfectly aware that there are minor semantic differences. In actual page development, these matter very little. – DannySmurf Oct 8 '08 at 16:14
2  
Actually, the differences matter greatly in practice. The only real similarity between the two is their lack of semantical associations. Other than that, they're completely different. Read Chris' answer for more details. – Konrad Rudolph Oct 8 '08 at 16:20
Well, I think that saying what Chris posted about is a significant practical difference is language lawyering. In ten years of HTML development, I can't think of a time that that particular behaviour even made itself obvious, let alone mattered "significantly" to the design. – DannySmurf Oct 8 '08 at 16:24
show 1 more comment

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.