JSFiddle - React, Tailwind, and code Playground

HTML

<p>Should be strike-through</p>

CSS

p {
    text-decoration: line-through;
}

p:before {
    content: "Should not be strike-through. ";
    text-decoration: none !important;
}