JSFiddle - React, Tailwind, and code Playground
by blowsie
HTML
<div class='titleWrap'>
<h1>Title</h1>
</div>
CSS
.titleWrap {
position:relative;
width:300px;
height:200px;
text-align:center;
}
.titleWrap:before {
position:absolute;
top:0;
right:50%;
bottom:0;
left:0;
content:"";
background:red;
}
.titleWrap:after {
position:absolute;
top:0;
right:0;
bottom:0;
left:50%;
content:"";
background:blue;
}
h1 {
color:#fff;
z-index:1;
font-size:50px;
background:#000;
border-radius:10px;
position:relative;
display:inline-block;
margin: 40px auto;
padding:10px;
}