JSFiddle - React, Tailwind, and code Playground

by Erik Woods

HTML

<del>this is a strikethrough style</del>

SCSS

del {
  color: #222;
  font-size: 32px;
  position: relative;
  text-decoration: none;
  
  &:after {
    content: '';
    background: #B5121B;
    height: 0.1em;
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
  }
}