下劃線是一種常用的文本修飾,在CSS中我們可以通過text-decoration屬性來為文本添加下劃線。以下是幾種常見的下劃線樣式:
/* 帶代表鏈接的顏色的下劃線 */ a { text-decoration: underline; } /* 雙下劃線 */ .element { text-decoration: underline double; } /* 跑馬燈效果的下劃線 */ .element { text-decoration: underline wavy; } /* 帶顏色的下劃線 */ .element { text-decoration: underline red; }
需要注意的是,在以上樣式中,text-decoration的值為underline、double、wavy和red都可以單獨使用,也可以混合使用,例如下面這個示例:
.element { text-decoration: underline double red; }
另外,需要注意的是,在一些比較老舊的瀏覽器中,可能不支持某些text-decoration屬性值,如wavy,因此在使用的時候需要做好兼容性處理。