css設定字體下劃線的方法:可以利用text-decoration屬性來進行設置,如【text-decoration: underline;】。 text-decoration屬性用於規定新增至文字的修飾、底線、上劃線、刪除線等。
屬性介紹:
text-decoration 屬性規定加入到文字的修飾,底線、上劃線、刪除線等。
(影片教學分享:css影片教學)
語法:
/*关键值*/ text-decoration: none; /*没有文本装饰*/ text-decoration: underline red; /*红色下划线*/ text-decoration: underline wavy red; /*红色波浪形下划线*/ /*全局值*/ text-decoration: inherit; text-decoration: initial; text-decoration: unset;
屬性值:
none 預設。定義標準的文字。
underline 定義文字下的一條線。
overline 定義文字上的一條線。
line-through 定義穿過文字下方的一條線。
blink 定義閃爍的文字。
inherit 規定應該從父元素繼承 text-decoration 屬性的值。
範例:
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中文網其他相關文章!