JSFiddle - React, Tailwind, and code Playground
by David Thomas
HTML
<del>This text has a (contrived) double strike-through</del>
CSS
del {
text-decoration: none;
position: relative;
}
del:after {
content: ' ';
font-size: inherit;
display: block;
position: absolute;
right: 0;
left: 0;
top: 40%;
bottom: 40%;
border-top: 1px solid #000;
border-bottom: 1px solid #000;
}