The span element would seem to be exactly like a div, but at the in-line level rather than at the block level, however I can't seem to think of any beneficial 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. Ignoring CSS, since that will give the semantic meaning, when does span provide additional semantic value by chopping up a sentence or string of words? It seems that in all cases, other elements are better suited to adding semantic value, making span a purely layout element. Is this true?
|
1
|
|||||
|
|
|
Span can be used to add semantic meaning that falls outside the scope of HTML. This can be done by using classes which identify certain attributes. For example, if you are writing a science-fiction novel you can use span to identify made-up words, because you may want to format those differently, or because you may want the spell-checker to ignore them:
This could render as
Another good example of this sort of thing are microformats, which allow the creation of arbitrary structure within HTML:
The advantage of span, versus div, is that spans can appear almost everywhere because they are inline content, and divs are block elements, so they can only occur inside certain other elements. |
||
|
|
|
|
If you want to apply formatting rules to part of the contents (for example a single word or sentence) of a tag. You can use the span tag. It is sometimes called tagless formatting. I use spans in my EBNF -> XHTML converter to apply a different format to literals and tokens. |
|||
|
|
|
|
It depends completely on what you want to express. If marking up the first name is of semantic value to you (be it just to have a hook for CSS to format first names or to extract them using some scripting language), then you can use a span. |
||
|
|
|
|
|
||
|
|
|
|
I use SPAN a lot when I want to have JavaScript parse the element and insert some value inside the tag, for example:
Would have a value inserted into it later, so in that case it does have meaning, though only a meaning that I decide to give it. The fact that span otherwise has no effect on the layout is ideal in that case. |
||
|
|
|
|
span tags need a class or id attribute to give them meaning. e.g. <span class="personal_phone_number">0123 456789</span> |
||||
|
|
|
A very useful benefit would be to mark changes in language. E.g.
Screen readers with multiple language capabilities could make use of this. So they're not presentational, just generic. In fact, spans are rarely presentational, providing a semantically meaningful class name is used, like "spelling-mistake" and not "bold-red-text". |
||
|
|
|
|
I think he's asking about the difference between a div and a span, and there really isn't one, other than the default behavior. It's a matter of convention. When using styling, |
||
|
|
|
Ignoring CSS (and other non-HTML markup), never. A <
Yes and no. The only real value of < |
||
|
|
|
SPAN (and DIV) elements by themselves are generally considered to be semantically neutral. A good approach is to use semantic markup as much as appropriately possible, but sometimes you run into situations where the existing html elements that do provide semantic meaning (EM, STRONG, ABBR, ACRONYM, etc, etc) aren't the right fit semantically for your content. So the next step is to use a semantically neutral SPAN or DIV with a semantically meaningful id or class. |
||
|
|
|
|
In HTML could be used for microformats. But since actual HTML specification is XHTML, there is no point. Instead of:
I'd rather use:
|
||
|
|
|
|
The meaning of SPAN is "this is a (generic) span of (e.g., text) content". Compare to DIV, which means "this is a logical division (i.e., a generic document section)". SPAN is mainly a hook for hanging styles off of (so you can use From the spec:
|
|||
|
|
