在網(wǎng)頁中,經(jīng)常需要添加刪除線效果。這種效果很常見,可用于標(biāo)記某些過時或者不再使用的內(nèi)容。在CSS中,我們可以通過text-decoration屬性來添加刪除線。該屬性有以下四個值:
text-decoration: none; /* 沒有裝飾 */ text-decoration: underline; /* 下劃線裝飾 */ text-decoration: overline; /* 上劃線裝飾 */ text-decoration: line-through; /* 刪除線裝飾 */
其中,line-through表示刪除線裝飾。下面是一個例子:
<p style="text-decoration: line-through;">這是一段有刪除線的文字</p>
在樣式表中,可以使用以下代碼實(shí)現(xiàn)刪除線樣式:
p { text-decoration: line-through; }
當(dāng)然,如果需要給特定的元素添加刪除線,也可以使用類選擇器或ID選擇器:
.delete-text { text-decoration: line-through; } #delete-this { text-decoration: line-through; }
總之,在CSS中添加刪除線非常簡單,只需要使用text-decoration屬性即可。