在 HTML 中使用 text-decoration 屬性可為文字新增底線:以 <span> 或 <div> 元素識別文字。新增 style 屬性,設定 text-decoration 為 underline。
如何使用HTML 設定底線
在HTML 中,可以使用text-decoration
#屬性為文字添加下劃線。
步驟:
<span>
或<div>
元素標識要加底線的文字。 style
屬性,設定 text-decoration
為 underline
。 語法:
<code class="html"><element style="text-decoration: underline;">要加下划线的文本</element></code>
#範例:
<code class="html"><p>这是带下划线的文本。</p> <div style="text-decoration: underline;"> 这是带下划线的文本,位于一个 <div> 元素中。 </div></code>
#筆記:
text-decoration
屬性也可以設定其他類型的文字修飾,例如刪除線和上劃線。 <code class="css">.underline { text-decoration: underline; }</code>
然後在 HTML 中使用該類別:
<code class="html"><p class="underline">这是带下划线的文本。</p></code>
以上是html中底線怎麼設定的詳細內容。更多資訊請關注PHP中文網其他相關文章!