Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • Hanzala Bhutto• 260

    @hanzala-bhutto

    Posted

    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:

    • <p class="product__original-price">$169.99</p>

    CSS Style:

    .product__original-price{

    text-decoration: line-through;

    }

    you can find proper examples for this css property here:

    text-decoration property docs

    Great Work by the Way !

    0