JSFiddle - React, Tailwind, and code Playground

by kthornbloom

HTML

<span class="strikethrough">Testeronie!</span>

SCSS

.strikethrough {
  position: relative;
   &::after {
     content:'';
     width: 100%;
     height: 1px;
     background: #000;
     top: 50%;
     position: absolute;
     left:0;
   }
}