Span Tag |
|
|
The tag is used to group inline-elements in a document.
The tag has very similar properties to the <div> tag. It changes the style of the text it encloses. But without any style attributes, the <span> tag won't change the enclosed items at all.
<span> tag syntax
<span>
text or other tags
</span>
Example :
<span style="background-color: blue; color: white;">some text</span>
some text |
|
|