在HTML中,標簽用于對文檔中的行內元素進行組合。它本身不帶有任何特定的含義或樣式,但可以用于為文本或其他行內元素添加自定義樣式或標記。
標簽通常用作以下用途之一:
示例:
<p>This is <span class="highlight">highlighted</span> text.</p>
示例:
<p>This is <span style="color: blue;">blue</span> text.</p>
示例:
<p>This is <span id="myText">clickable</span> text.</p>
需要注意的是,標簽是一個行內元素,不會獨占一行,而是與其他行內元素一同排列。與之相對的是塊級元素,如