JSFiddle - React, Tailwind, and code Playground

by kuonyuu

HTML

<h1><span>This is my Title</span></h1>
<h1>Another Similar Title</h1>
<div class="color"><h1>Just Title</h1></div>

CSS

h1 {
    position: relative;
    font-size: 30px;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}
span { padding: 0 6px; }
h1:before, h1:after {
    position: absolute;
    top: 51%;
    overflow: hidden;
    width: 48%;
    height: 1px;
    content: '\a0';
    background-color: red;
}
h1:before {
    margin-left: -48%;
    text-align: right;
}
.color {
    background-color: #ccc;
}