CSS中如何實現刪除線效果?我們可以使用text-decoration屬性,將其設置為line-through來實現文字上方的刪除線效果。下面是具體的代碼實現:
p { text-decoration: line-through; }
我們也可以通過給標簽添加class,來控制特定元素的刪除線效果。例如,下面的代碼可以讓class為highlight的文字添加上刪除線:
.highlight { text-decoration: line-through; }
需要注意的是,text-decoration屬性除了可以控制刪除線,還可以控制下劃線、虛線等效果。如果我們只想添加刪除線而不改變文字樣式,可以將其余屬性設置為none,并只保留line-through。例如:
p { text-decoration: line-through; text-decoration-style: solid; text-decoration-color: black; text-decoration-line: line-through; }
以上代碼只會添加黑色的實線刪除線效果。
上一篇css怎么做折線動畫
下一篇mysql數據庫1130