在CSS中,我們可以對字體添加橫線。下面介紹幾種常見的方法:
text-decoration: underline; /*添加下劃線*/ text-decoration: line-through; /*添加刪除線*/ text-decoration: overline; /*添加上劃線*/
以上三種方法可以通過text-decoration
屬性實現。
如果想要同時添加多種樣式,可以使用空格隔開:
text-decoration: underline line-through; /*同時添加下劃線和刪除線*/
或者使用下面的語法:
text-decoration: underline; /*添加下劃線*/ text-decoration: line-through; /*添加刪除線*/
還可以對橫線進行樣式設置,如顏色、粗細等:
text-decoration: underline red; /*添加紅色下劃線*/ text-decoration: line-through 2px; /*添加2像素粗的刪除線*/
另外,如果想要去掉橫線,可以將text-decoration
設為none
:
text-decoration: none;
總的來說,CSS中對字體添加橫線非常方便,可以通過簡單的屬性設置實現各種樣式的橫線效果。