JSFiddle - React, Tailwind, and code Playground

by AndyE

HTML

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

CSS

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