CSS中原價的寫法可以使用text-decoration屬性,并將其值設(shè)置為line-through,表示劃掉。
原價{ text-decoration: line-through; }
在HTML中,可以將需要打折的價格包裝在一個帶有class屬性的span標(biāo)簽中,然后使用CSS設(shè)置該class的樣式。
<span class="discount">100元</span> .discount{ text-decoration: line-through; }
上述代碼將100元的原價顯示為劃掉的效果。如果需要同時顯示折扣價和原價,可以將原價和折扣價分別放置在兩個span標(biāo)簽中,然后分別設(shè)置其樣式。
<span class="discount">100元</span> <span class="price">50元</span> .discount{ text-decoration: line-through; } .price{ color: red; }
上述代碼將原價100元顯示為劃掉的效果,折扣價50元的字體顏色設(shè)置為紅色。
上一篇css 原價hua
下一篇css 占位file