JSFiddle - React, Tailwind, and code Playground

HTML

<div class="middle"> this stays in the middle
    <div class="left"> text here </div>
</div>

CSS

.middle{
	width:200px;
	height:200px;
	margin-left: auto;
    margin-right: auto;
    background-color: blue;
  	border: solid 1px ;

}
.left {
    position: relative;
    right:60px;
}