在CSS里,表示刪除鍵的關鍵是“text-decoration”屬性。這個屬性決定是否在文本下方添加一條橫線,以表示該文本已被刪除。
要添加刪除線,可以將“text-decoration”設置為“line-through”,例如:
.deleted-text { text-decoration: line-through; }
這將在具有“deleted-text”類的元素的文本下方添加一條橫線。
如果你想自定義刪除線的顏色、樣式或粗細,可以使用“text-decoration-color”、“text-decoration-style”和“text-decoration-thickness”屬性。例如:
.deleted-text { text-decoration: line-through; text-decoration-color: red; text-decoration-style: dotted; text-decoration-thickness: 2px; }
這將使用紅色、點線和2像素的厚度添加刪除線。
如果要取消刪除線,將“text-decoration”屬性設置為“none”即可:
.normal-text { text-decoration: none; }
這將刪除具有“normal-text”類的元素的任何刪除線。
上一篇css從左向右平移
下一篇java的雙大于和雙小于