在CSS樣式中,我們經常會使用橫線,它可以用來修飾文字、分割內容等。下面介紹一些常見的橫線樣式。
/* 下劃線 */ .text-underline { text-decoration: underline; } /* 刪除線 */ .text-line-through { text-decoration: line-through; } /* 上劃線 */ .text-overline { text-decoration: overline; } /* 雙下劃線 */ .text-double-underline { text-decoration: underline double; } /* 雙刪除線 */ .text-double-line-through { text-decoration: line-through double; } /* 下劃線顏色為紅色 */ .text-red-underline { text-decoration: underline red; }
以上是常見的橫線樣式,可以根據具體情況選擇使用。需要注意的是,text-decoration
屬性不僅可以用于橫線,還可以用于其它修飾,如加粗、斜體等。
上一篇css把內容下移