@Pradyumna-HegdeSubmitted about 1 year ago
Any other approach instead of the usage of the <s> (strike through) tag which isn't accessible?
Any other approach instead of the usage of the <s> (strike through) tag which isn't accessible?
instead of using <s></s> tag or any other approach involving html, it is better to use css style properties to achieve the same effect: You can apply the following css property on your p tag:
For Your Tag:
CSS Style:
.product__original-price{
text-decoration: line-through;
}
you can find proper examples for this css property here:
Great Work by the Way !