想要在CSS中設(shè)置刪除線加粗的效果,可以使用text-decoration
和font-weight
兩個(gè)屬性。
首先,通過text-decoration
屬性設(shè)置文本的刪除線,取值為line-through
,表示在文本上方添加一條水平刪除線。
text-decoration: line-through;
其次,通過font-weight
屬性設(shè)置文本的粗細(xì)程度,取值為bold
,表示文本加粗。
font-weight: bold;
將兩個(gè)屬性結(jié)合起來,便可設(shè)置文本的刪除線加粗效果。
text-decoration: line-through;
font-weight: bold;
如果想對鏈接文本添加刪除線加粗效果,可以使用a
標(biāo)簽并在CSS中設(shè)置樣式。
a {
text-decoration: line-through;
font-weight: bold;
}
這樣便可以在網(wǎng)頁中呈現(xiàn)刪除線加粗的效果。