JSFiddle - React, Tailwind, and code Playground

by AndyE

HTML

<!-- CSS1 example, requires <HR> -->
<div id="css1">
    <h1>&nbsp;Need more certifications?&nbsp;<hr/></h1>
</div>

CSS

#css1 h1 { position: relative; text-align: center; color: darkred; font-weight: bold; }
#css1 h1 > hr { position:absolute; left:0px; right: 0px; top: 0px; z-index: -1; border: 1px solid darkred; }
#css1 h1:first-line { background-color: white; padding: 10px; }