JSFiddle - React, Tailwind, and code Playground

by Lynda333

HTML

<div class="title">
        <h3>Title</h3>
        <div class="title-container">
            <div class="title-separator"></div>
        </div>
    </div>

CSS

.title h3{
	display: table-cell;
	white-space: pre;
	padding-right:7px;
}
.title-container {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    height: 6px;
    width: 100%;
}
.title-separator {
    border-bottom-width: 1px;
    border-top-width: 1px;
    height: 6px;
    display: block;
    width: 100%;
	-webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    position: relative;
	border-color:#222;
	border-style:solid;
	border-left:0;
	border-right:0;
}