JSFiddle - React, Tailwind, and code Playground

by Andrey

HTML

<h2>
  <div>
    Lorem ipsum dolor sit amet, consectetur adipisicing elit.
  </div>
</h2>

SCSS

div {
  font-size: 65px;
  display: inline;
  position: relative;
  overflow: hidden;
  background: red;
  &:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
  }
}