What is the theoretical explanation of
<span></span>
tag? And where we use? What is the use of this tag?
|
|
What is the theoretical explanation of
tag? And where we use? What is the use of this tag?
|
||||||||
|
|
|
From here:
So, the short version is, it's to style some text (without a paragraph or linebreak which is different from <div> tag) |
||
|
|
|
It's just a way to logically group subelements together. You can also apply styles, etc at this level which will cascade down. Take a look at the wikipedia article which goes into some depth. |
||
|
|
|
|
It is for grouping HTML elements and content for applying structure, defined for HTML 4.0 at http://www.w3.org/TR/REC-html40/struct/global.html#h-7.5.4:
It goes on to give an example of the usage. |
|||
|
|
|
|
Span has no structural meaning to the document (as h1 does, for instance), but can be used as a container when none of the other inline containers are appropiate. You would, for instance, use a span if you needed to apply some CSS to a small bit of text within some other text. |
||
|
|
|
|
Hi The span tag just tells the browser to apply what ever style changes are included within the span and if there is no styling within the span then there would be no formatting applied to the enclosed text. This is a bit different from the div tag which incorporates a paragraph break even if no styling options are included within a div. So it is useful when you want to apply styles to elements without placing them in a separate block. cheers |
||
|
|
|
|
It's just a placeholder for javascript or css. If you don't use javascript/css, has no use to u. |
||||
|