css去掉底線樣式的方法是,設定屬性【text-decoration: none;】。如果我們要為文字新增樣式,如紅色波浪線,可以設定屬性【text-decoration: underline red;】。
本文操作環境: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中文網其他相關文章!