在CSS中,我們可以使用text-decoration
屬性來(lái)添加刪除線,我們可以將text-decoration
屬性設(shè)置為line-through
,以在文本上添加一條刪除線,以下是一個(gè)示例:
p { text-decoration: line-through; }
上述代碼將給所有段落(p
元素)添加一條刪除線,如果你想給特定的段落添加刪除線,你可以給那個(gè)段落添加一個(gè)類(lèi)名,然后在CSS中針對(duì)那個(gè)類(lèi)名進(jìn)行設(shè)置。
<p class="strikethrough">這是一段帶有刪除線的文本。</p>
在CSS中設(shè)置如下:
.strikethrough { text-decoration: line-through; }
這樣,只有帶有strikethrough
類(lèi)名的段落會(huì)有刪除線,如果你想要更細(xì)致的控制,你還可以使用CSS的偽元素(:before
和:after
)來(lái)在特定位置添加刪除線。
p:before { content: ""; border-bottom: 1px solid black; width: 100%; display: block; margin-top: -10px; }
這段代碼將在每個(gè)段落之前添加一條刪除線,你可以根據(jù)需要調(diào)整border-bottom
、width
和margin-top
等屬性的值,以改變刪除線的樣式和位置,希望這些信息對(duì)你有所幫助!