JSFiddle - React, Tailwind, and code Playground
HTML
<div class="topStyle1All">
<span class="topStyle1Left">Left Content</span>
<span class="topStyle1Right">Title</span>
</div>
<div class="bottomContent">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
CSS
.topStyle1All{
//text-align: center//center of title should be relative to this div
width: 100%;
position: relative;
}
.topStyle1Left{
position: absolute;
top: 5px;
left: 5px;
}
.topStyle1Right{
display: inline-block;
width: 90%;
font-size: 2em;
padding-right: 5px;
position: relative;
text-align: center;//Center relative to parent
left: -10%;
top: -1.1em;
}
.bottomContent{
padding: 50px 0px 0px 0px;
}