vote up 1 vote down star
1

Divs seem to be more suited to use as layout elements, as opposed to tables which are defined to contain tabular data, but do div elements have any semantic meaning? I assume, based on their name, that they are meant to provide divisions in the page, or to divide up the content, but is this supposed to be at any specific level, or can a div be used to divide up any content?

With that in mind, is there any other semantic meaning to the div element, or is it purely a logical, and hence a layout and divider/grouping element?

Similarly, the span element would seem to be exactly like a div, but at the in-line level rather than at the block level. Span allows similar divisions in-line for for both formatting as well as logical divisions, however I can't seem to think of any logical divisions that the span element can provide. A single sentence, or word if not contained in a sentence, seems to be the smallest logical part. Is this the case? Does span have no other, or even any real, semantic significance and, like the div element, should span primarily be used for formatting?

Duplicate:

What is the difference between HTML tags DIV and SPAN?

flag
This does seem like the same question, but I don't care so much as how to USE the div and span elements, but more of what the meaning of them is. Unless they truly are just logical/layout elements and have NO real meaning. Also, when does span make semantic sense? – cdeszaq Nov 10 '08 at 19:23
Ok, I leave it closed then. – Gamecat Nov 10 '08 at 19:24
@cdeszaq - in the dupe I linked to, the semantic value of the DIV and SPAN are discussed, so your question was a duplicate, for all intents and purposes. There is no need to have this reopened, as far as I am concerned. Did you not read the responses on that linked page? – Jason Bunting Nov 10 '08 at 19:49

closed as exact duplicate by Unkwntech Nov 10 '08 at 19:26

1 Answer

vote up 0 vote down

The div stands for division, because it divides your document into sections. It's original use was organizational, but it has evolved into a general block that has separate formatting.

link|flag
I think it is actually short for "division" not "divide." – Jason Bunting Nov 10 '08 at 19:20
You are right ;-). – Gamecat Nov 10 '08 at 19:23
I wouldn't say it has evolved so much as that some people that don't know better have unwittingly given it new meaning - it should still used as a semantic tool, to the degree that it provides such (which isn't really much). – Jason Bunting Nov 10 '08 at 19:24
That's what I meant with evolved. (as in evolution is seldom intentionally). – Gamecat Nov 10 '08 at 19:26
Sure; maybe the words "degenerated" and "devolved" are better suited to describe this then... :) LOL – Jason Bunting Nov 10 '08 at 19:53

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