JSFiddle - React, Tailwind, and code Playground

by keith9090

HTML

<h1>This is just a test</h1>

CSS

h1 {
  font-weight: 300;
  display: inline-block;
  padding-bottom: 5px;
  position: relative;
}
h1:before{
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    bottom: 0;
    left: 25%;
    border-bottom: 1px solid red;
}