在css中,可以使用text-decoration屬性設定刪除線,語法「text-decoration:line-through」。 text-decoration屬性設定元素文字修飾,值為line-through時,定義穿過文字下方的一條線。
本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
新test.html頁面,在test.html 頁面body區域內,新建一個div,用來存放物品名稱。在div標籤內新建span,用來存放物品價格。在test.html 頁面body區域內新建style標籤,在style標籤裡設定span標籤內的價格為紅色
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .price{ color:red; } </style> </head> <body> <div>键盘: <span class="price">200元</span> </div> </body> </html>
在瀏覽器裡開啟test.html,看一下目前的效果
回到編輯器,在test的style標籤內,給span設定text-decoration: line-through屬性
<style> .price{ color:red; text-decoration: line-through; } </style>
再次開啟test.html,會發現價格上被加了刪除線。
推薦學習:css影片教學
#以上是css如何設定刪除線的詳細內容。更多資訊請關注PHP中文網其他相關文章!