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.
|
|
|||
|
|
|
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:
Note that it is illegal to place a block level element within an inline element, so:
...is illegal. You asked for some concrete examples, so is one taken from my bowling website, BowlSK:
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, 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 |
|||||||||||||||||
|
|
If you wanted to do something with some inline text, As noted by others, there are some semantics implied with each of these, most significantly the fact that a
|
|||||||
|
|
Just for the sake of completeness, I invite you to think about it like this:
|
|||||||||||||
|
|
The real important difference is already mentioned in Chris' answer. However, the implications won't be obvious for everybody. As an inline element,
The above code isn't valid. To wrap block-level elements, another block-level element must be used (such as 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!
|
|||||||||||||
|
|
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 |
|||
|
|
|
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. |
|||
|
|
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 |
|||
|
|
|
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. |
|||||||||||||
|