CSS 中設定單一文字樣式可以透過text-decoration 屬性實現,可為文字新增底線、刪除線、上劃線或波浪線,語法為:text-decoration: none | underline | overline | line -through | wavy;。
CSS 中設定單一文字樣式
在CSS 中,您可以使用text-decoration
屬性來設定單一文字的樣式。此屬性可讓您為文字新增底線、刪除線、上劃線或波浪線。
語法:
<code class="css">text-decoration: none | underline | overline | line-through | wavy;</code>
取值:
使用範例:
要為特定文字元素新增下劃線,可以使用下列程式碼:
<code class="css">.my-text { text-decoration: underline; }</code>
要移除文字元素的刪除線,可以使用以下程式碼:
<code class="css">.my-text { text-decoration: none; }</code>
其他CSS 屬性:
除text-decoration
屬性外,CSS 還提供了一些其他屬性來控製文字樣式,例如:
以上是css中如何設定單一文字樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!