JSFiddle - React, Tailwind, and code Playground

by paffffff

HTML

<h2>Lorem ipsum dolor sit.</h2>

CSS

body {
    margin: 50px;
    color: #666;
    background: #f1f1f1;
    font-family: "Trebuchet MS", Arial, sans-serif;
}
h2 {
    position: relative;
    display: inline-block;
    padding: 5px;
    border-top: solid 4px #f96;
}
h2:after {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    height: 4px;
    width: 40%;
    background: #444;
}