首頁 > web前端 > css教學 > 主體

css怎麼去掉下劃線樣式

王林
發布: 2023-01-06 11:13:02
原創
3740 人瀏覽過

css去掉底線樣式的方法是,設定屬性【text-decoration: none;】。如果我們要為文字新增樣式,如紅色波浪線,可以設定屬性【text-decoration: underline red;】。

css怎麼去掉下劃線樣式

本文操作環境:windows10系統、css 3、thinkpad t480電腦。

如果我們要取消文字中的底線樣式,可以設定屬性text-decoration: none,下面我們來介紹下text-decoration屬性。

text-decoration 屬性規定加入到文字的修飾,底線、上劃線、刪除線等。

text-decoration: none;                     
/*没有文本装饰*/
text-decoration: underline red;            
/*红色下划线*/
text-decoration: underline wavy red;       
/*红色波浪形下划线*/
登入後複製

舉些例子:

h1.under {
    text-decoration: underline;
}
h1.over {
    text-decoration: overline;
}
p.line {
    text-decoration: line-through;
}
p.blink {
    text-decoration: blink;
}
a.none {
    text-decoration: none;
}
p.underover {
    text-decoration: underline overline;
}
登入後複製

學習影片分享:css影片教學

以上是css怎麼去掉下劃線樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板