+ 1
What is the function of span?
what does span do in a html code and what is the full name of "span"
2 RĂ©ponses
+ 1
a span element by itself has no meaning. span elements are used to give styling to specific sections of code inline.
example:
<p> Hello world! <span style ="color:green;">This is green</span> Good bye</p>
+ 1
k thanks