JSFiddle - React, Tailwind, and code Playground

by kthornbloom

HTML

<del class="listamount amount">$269.00</del>

SCSS

del {
  text-decoration: none;
  position: relative;
  &:before {
    content:'';
    background: #000;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
  }
}